boot2

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

00093.c (98B)


      1 int a[] = {1, 2, 3, 4};
      2 
      3 int
      4 main()
      5 {
      6 	if (sizeof(a) != 4*sizeof(int))
      7 		return 1;
      8 	
      9 	return 0;
     10 }