boot2

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

00016.c (78B)


      1 int
      2 main()
      3 {
      4 	int arr[2];
      5 	int *p;
      6 	
      7 	p = &arr[1];
      8 	*p = 0;
      9 	return arr[1];
     10 }