第23529题 判断题
已知int数组arr[4]={0,1,2,3}首内存地址为0x7ffee4065820,判断执行int* p=arr; p+=1;后指针p的值为1这一说法是否正确

假设整数数组 arr[4] = {0, 1, 2, 3} 的第一个元素在内存中的地址为 0x7ffee4065820,经过以下代码操作:

int* p = arr;
p += 1;

后,指针 p 的值是1。判断该结论是否正确。

{{ option.label }}
子题{{ index + 1 }} {{ child.type_label }}
{{ option.label }}
✓ 正确 ◐ 部分正确 ✗ 错误
程序运行统计
暂无判题统计
提交{{ questionInfo.stats ? questionInfo.stats.submit_count : 0 }}次 正确率{{ statsAccuracy }}%
答案解析