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?
If you're looking to view this from gdb you can issue:
x /gx d
The g will print the value as a giant (8 bytes)