kit

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

6_7_6_03_array_of_ptr.c (77B)


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