0168-array.c - scc - simple c99 compiler
 (HTM) git clone git://git.simple-cc.org/scc
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) Submodules
 (DIR) README
 (DIR) LICENSE
       ---
       0168-array.c (165B)
       ---
            1 int arr[][3][5] = {
            2         {
            3                 { 0, 0, 3, 5 },
            4                 { 1, [3] = 6, 7 },
            5         },
            6         {
            7                 { 1, 2 },
            8                 { [4] = 7, },
            9         },
           10 };
           11 
           12 int
           13 main(void)
           14 {
           15         return !(arr[0][1][4] == arr[1][1][4]);
           16 }