kit

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

a.c (202B)


      1 const unsigned char table[] = {
      2     0, 1, 2, 3, 4, 5, 6, 7, 8, 9,
      3 };
      4 
      5 const unsigned char* p = &table[6 - 2];
      6 
      7 int test_main(void) {
      8   if (p[0] != 4) return 1;
      9   if (p[2] != 6) return 2;
     10   return 42;
     11 }