第20520题 单选题
给定如下C++代码,执行后第11行输出的地址X和第12行输出的地址Y的关系,以下选项正确的是?
1 struct pass{
2  int no;
3  char name[20];
4  int level;
5 };
6
7 int main()
8 {
9  struct pass XiaoYang;
10
11  cout << "&XiaoYang=" << &XiaoYang << endl; //第11行
12  cout << "&(XiaoYang.no)=" << &(XiaoYang.no) << endl; //第12行
13
14  cout << endl;
15  return 0;
16 }
{{ option.label }}
子题{{ index + 1 }} {{ child.type_label }}
{{ option.label }}
✓ 正确 ◐ 部分正确 ✗ 错误
程序运行统计
暂无判题统计
提交{{ questionInfo.stats ? questionInfo.stats.submit_count : 0 }}次 正确率{{ statsAccuracy }}%
答案解析