6_7_9_09_struct_in_array.c (98B)
1 int test_main(void) { 2 struct P { 3 int x, y; 4 } a[2] = {{0, 0}, {0, 42}}; 5 return a[1].y; 6 }