/* To see the location of x in ups: Add expr &x */ int main(void) { int x = 3; int *p = &x; printf("%d\n",x); *p = 5; printf("%d\n",x); return 0; }