/* CSE 303, Spring 2009, Marty Stepp This program demonstrates some manipulation of pointers. Output: x is 0 &x is 0x0022ff8c y is 0x0022ff8c *y is 0 &y is 0x0022ff88 */ #include int main(void) { int x; int* y = &x; printf("x is %d \n", x); printf("&x is 0x%08x\n", &x); printf("y is 0x%08x\n", y); printf("*y is %d \n", *y); printf("&y is 0x%08x\n", &y); return 0; }