6_7_06_struct_basic.c (89B)
1 int test_main(void) { 2 struct S { 3 int a, b; 4 } s = {10, 32}; 5 return s.a + s.b; 6 }