boot2

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

331-fs-compound-struct-addr.c (109B)


      1 struct point { int x,y; };
      2 struct point *o = &(struct point){3,4};
      3 int main(void) { return o->x*10 + o->y; }