#include int main () { int x[5] = {1, 2, 3, 4, 5}; x[10] = 11; printf(" x[10] = %d\n", x[10]); return 0; }