A bit of a silly question but here it is - how do I get a value based on its address?
Usually to get the address for a certain value I just print it out like this:
printf("%p", &loc);
But now I need to get a value based on its address in memory. How do I do that?