I ran a snippet of C++ code in Microsoft Visual Studio and am tryomg to understand the export of Memory Dump.
The code is the following
Dummy* pA;
{
Dummy* pB = new Dummy("Kostas");
pA = pB;
}
delete pA;
pA = NULL;
When the line delete pA
is executed, I see that the bytes where the pA
shows are filled with 0xdd
.