int main() { int *x; int *y; y = x; printf("%p %p", &x,&y); // prints 0061FF1C 0061FF18 printf("%p %p", x, y); //