1 struct Foo { 2 int b; 3 int c; 4 }; 5 main()6 int main() { 7 struct Foo *a = 0; 8 return a[10].c; 9 } 10