kit

kit
git clone https://git.ryansepassi.com/git/kit.git
Log | Files | Refs | README

6_7_9_24_flat_array_init.c (103B)


      1 int test_main(void) {
      2   int a[2][2] = {1, 2, 3, 36};
      3   return a[0][0] + a[0][1] + a[1][0] + a[1][1];
      4 }