boot2

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

00039.c (98B)


      1 int
      2 main()
      3 {
      4 	void *p;
      5 	int x;
      6 	
      7 	x = 2;
      8 	p = &x;
      9 	
     10 	if(*((int*)p) != 2)
     11 		return 1;
     12 	return 0;
     13 }