0017-struct.c (90B)
1 int 2 main() 3 { 4 struct { int x; int y; } s; 5 6 s.x = 3; 7 s.y = 5; 8 return s.y - s.x - 2; 9 }