boot2

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

022-postinc.c (151B)


      1 // tests/cc-parse/22-postinc.c — post-increment returns OLD value (§B.2).
      2 int main(void) {
      3     int x = 5;
      4     int y = x++;
      5     return x * 10 + y;
      6 }