int main (){
    int number[5];
    number[0]=45;
    number[1]=12;
    number[2]=555;
    number[5]=89;
    number[6]=46; 
    printf("%d",number[6]); 
}
As we know, we're not supposed to access array out-of-bounds. Here, how the number[6] can be executable?
 
     
    