scc

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

0276-array.c (61B)


      1 int arr[2] = { 0, 2 };
      2 
      3 int
      4 main(void)
      5 {
      6 	return arr[0]++;
      7 }