1 int a;
b(char * c)2 void b(char *c)
3 {
4   c += 4;
5   for (int i = 0; i < 4; i++)
6     a = *c++ = 2;
7 }
8