kit

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

6_7_6_02_array_2d.c (83B)


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