#include #include main () { int *ip=NULL, x=1, y=7; ip=&x; y=*ip; *ip=0; printf("%d\n",x); }