#include #include main() { int *ip=NULL , x=1 , y=7; ip = &x; y = *ip; printf ("%d\n", y); } //la risposta esatta e' c : 1