kit

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

6_5_03_large_indirect_addr_of.c (177B)


      1 struct Big {
      2   unsigned char pad[18080];
      3   int value;
      4 };
      5 
      6 int test_main(void) {
      7   struct Big s;
      8   struct Big* p = &s;
      9   int* q;
     10   p->value = 37;
     11   q = &p->value;
     12   return *q;
     13 }