URI: 
       0276-array.c - scc - simple c99 compiler
  HTML git clone git://git.simple-cc.org/scc
   DIR Log
   DIR Files
   DIR Refs
   DIR README
   DIR LICENSE
       ---
       0276-array.c (61B)
       ---
            1 int arr[2] = { 0, 2 };
            2 
            3 int
            4 main(void)
            5 {
            6         return arr[0]++;
            7 }