boot2

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

050-init-addr.c (137B)


      1 // tests/cc-parse/50-init-addr.c — global pointer initialized to &global. §E.2.
      2 int x = 7;
      3 int *p = &x;
      4 int main(void) { return *p; }