#include int main () { int x; int * x_p; x_p = x; printf ("%p\n", x_p); x_p = x_p + 1; printf ("%p\n", x_p); return 0; }