Two ways:
1. Cast the address literal as a pointer:
char value = *(char*)0xff73000; Cast the literal as a pointer to the type.
and
De-reference using the prefix *.
Same technique applies also to other types.
2. Assign the address to a pointer:
char* pointer = (char*)0xff73000; Then access the value:
char value = *pointer; char fist_bytefirst_byte = pointer[0]; char second_byte = pointer[1]; Where char is the type your address represents.