标签: c++ arrays operators
为什么用索引1寻址数组元素的以下形式正确?
int a[5] = {0, 1, 2, 3, 4}; // this statement: std::cout << 1[a]; std::cout << std::endl;