I was wondering whether it is possible to do something like this:
unsigned int address = 0x0001FBDC; // Random address :P
int value = *address; // Dereference of address
Meaning, is it possible to get the value of a particular address in memory ?
Thanks