kit

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

6_5_40_ptr_add.c (92B)


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