Two ways:
1. Insert the address literal as a pointer:
char value = *(char*)0xff73000;
2. Assign an address to the pointer:
char* pointer = 0xff73000;
Then access the value:
char value = *pointer; char fist_byte = pointer[0]; char second_byte = pointer[1];
Where char
is the type that represents your address.
source share