boot2

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

026-sizeof-expr.c (128B)


      1 // tests/cc-parse/26-sizeof-expr.c — sizeof e returns actual size (§C.1).
      2 int main(void) {
      3     int x;
      4     return sizeof x;
      5 }