に大きなインデックスにアクセスすることができますなぜ私は三つの要素のint配列を宣言していますが、私は、私は私はC
int x[3];
int length = sizeof(x)/sizeof(x[0]);
x[10] = 2000;
printf("\n the length defined is %i but I can still setting and getting other indexes like index 10", length);
printf("\n The value of the element eleven is: %i", x[10]);
おそらく[この質問](https://stackoverflow.com/questions/37309076)が役立ちます。 – user3386109