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