Suppose I do a
double d = 234.5;
I want to see the memory contents of d [the whole 8 bytes]
d
How do I do that?
Did you try taking the address of d and print sizeof( d ) bytes starting from that address?
sizeof( d )