/* Use this very simple program to observe how pointer operations are compiled. */ int glob = 255; int main() { int *p; p = &glob; *p = 42; return *p; }