boot2

Playing with the boostrap
git clone https://git.ryansepassi.com/git/boot2.git
Log | Files | Refs | README

024-cmpd-ptr.c (159B)


      1 // tests/cc-parse/24-cmpd-ptr.c — compound assignment through pointer (§B.4).
      2 int main(void) {
      3     int x = 7;
      4     int *p = &x;
      5     *p += 3;
      6     return x;
      7 }