0109-struct.c (107B)
1 struct S1 { int x; }; 2 struct S2 { struct S1 s1; }; 3 4 int 5 main() 6 { 7 struct S2 s2; 8 s2.s1.x = 1; 9 return 0; 10 }