scc

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

0277-struct.c (131B)


      1 struct S {
      2         int a;
      3         int b;
      4 };
      5 struct S s = { 0, 1 };
      6 int arr[2] = { 0, 1 };
      7 
      8 int
      9 main (void)
     10 {
     11 	return arr[s.a++];
     12 }