/* CSE 333 Su12 Lecture 4 demo: asr.c */ /* Gribble/Perkins */ /* Print variable addresses. Try running this a few times. */ #include int main(int argc, char **argv) { int x = 1; int *p = &x; printf("&x: %p; p: %p; &p: %p\n", &x, p, &p); return 0; }