100.0090.C.   Explain why I can enter the command:  printf(“%d”, myarray[76]);  and still receive output, even though I declared myarray to only have 5 elements.

 

An array offset is merely a way of calculating an address. Even if the offset is outside of the range of asked for locations, the address determined by that offset is a valid address.