/* * address.c * * Computer Science 50, Fall 2011 * section4 * * How memory addresses work. */ #include int main(void) { int x = 5; int* y = &x; printf("x is stored at memory address %p\n", y); }