boot2

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

00151.c (165B)


      1 int arr[][3][5] = {
      2 	{
      3 		{ 0, 0, 3, 5 },
      4 		{ 1, [3] = 6, 7 },
      5 	},
      6 	{
      7 		{ 1, 2 },
      8 		{ [4] = 7, },
      9 	},
     10 };
     11 
     12 int
     13 main(void)
     14 {
     15 	return !(arr[0][1][4] == arr[1][1][4]);
     16 }