kit

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

6_3_2_1_01_array_to_ptr.c (78B)


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