第28231题 单选题
分析以下C++代码,关于数组越界行为的说法正确的是?
#include <iostream>
int main() {
    int nums[2] = {5, 8};
    // 访问数组越界元素
    std::cout << nums[2] << std::endl;
    // 修改越界位置的内存
    nums[-1] = 100;
    return 0;
}
{{ option.label }}
子题{{ index + 1 }} {{ child.type_label }}
{{ option.label }}
✓ 正确 ◐ 部分正确 ✗ 错误
程序运行统计
暂无判题统计
提交{{ questionInfo.stats ? questionInfo.stats.submit_count : 0 }}次 正确率{{ statsAccuracy }}%
答案解析