6_7_9_05_struct_init.c (88B)
1 int test_main(void) { 2 struct S { 3 int a, b; 4 } s = {40, 2}; 5 return s.a + s.b; 6 }