boot2

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

00019.c (104B)


      1 int
      2 main()
      3 {
      4 	struct S { struct S *p; int x; } s;
      5 	
      6 	s.x = 0;
      7 	s.p = &s;
      8 	return s.p->p->p->p->p->x;
      9 }
     10