#include int main () { int x = 3; int *y = &x; int *z = (int *) x; printf ("x = %d\n", x); printf ("y = %p\n", y); printf ("z = %p\n", z); }