/* CSE 303, Spring 2009, Marty Stepp This program demonstrates some manipulation of pointers. Output: x is 42 &x is 0022ff8c p is 0022ff8c */ #include void f(int a[], int size); int main(void) { int x = 42; int* p; p = &x; // p stores address of x printf("x is %d\n", x); printf("&x is %08x\n", &x); printf("p is %08x\n", p); return 0; }