为什么这个C ++代码实际编译和工作?

时间:2015-07-07 09:02:34

标签: c++

请考虑以下代码。为什么这样做?

#include <iostream>
using namespace std;

int main()
{
    int i[10] = {1,2,3,4,5,6,7,8,9,10};
    int array = 4;
    cout << array[i] << endl; 
}

编译时没有警告,错误和输出5.

0 个答案:

没有答案