boot2

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

00072.c (117B)


      1 int
      2 main()
      3 {
      4 	int arr[2];
      5 	int *p;
      6 	
      7 	p = &arr[0];
      8 	p += 1;
      9 	*p = 123;
     10 	
     11 	if(arr[1] != 123)
     12 		return 1;
     13 	return 0;
     14 }