int myArray[3] = {0};
myArray[111] = 22;
printf("\n%d\n", myArray[111]);

The code above is not giving any errors or warnings when I compile and run it in CodeBlocks 20.03.

The code echos...