第28226题 单选题
下列关于C++数组越界行为的描述中,正确的是?

以下C++代码存在数组越界行为,关于该行为的说法正确的是:

#include <iostream>
int main() {
    int nums[2] = {10, 20};
    std::cout << nums[3] << std::endl; // 访问超出数组长度的下标
    nums[-2] = 50; // 访问负下标
    return 0;
}
{{ option.label }}
子题{{ index + 1 }} {{ child.type_label }}
{{ option.label }}
✓ 正确 ◐ 部分正确 ✗ 错误
程序运行统计
暂无判题统计
提交{{ questionInfo.stats ? questionInfo.stats.submit_count : 0 }}次 正确率{{ statsAccuracy }}%
答案解析