0053-struct.c (82B)
1 int 2 main() 3 { 4 struct T { int x; }; 5 { 6 struct T s; 7 s.x = 0; 8 return s.x; 9 } 10 }