kit

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

6_5_lvalue_array_assign.c (90B)


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