does anyone know how to read the memory content at a specific address? Thanks.
Printable View
does anyone know how to read the memory content at a specific address? Thanks.
Basically you can just do:
char * p = 0xHexAddressOfMemory;
or
char * p = DecimalAddressOfMemory;
But unless you really have a good reason to believe you are addressing valid memory you will most likely create an access violation or overwrite memory that will screw up your app later.