1 2 3 4 5 6 7 8 9 10 11 12
main () { static int a[] = {3, 4}; register int *b; int c; b = a; c = *b++ % 8; if (c != 3) abort (); exit (0); }