1 2 3 4 5 6 7 8 9 10 11
int x,*p=&x; int main() { int i=0; x=1; p[i]=2; if (x != 2) abort (); exit (0); }