kit

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

6_7_6_06_array_static_n.c (107B)


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