#include main ( ) { int x, *p; x = 10; *p = x; printf("x = %d , p = %d",x, p); }