scc

simple c99 compiler
git clone git://git.simple-cc.org/scc
Log | Files | Refs | Submodules | README | LICENSE

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 }