试题详情
简答题声明一个int型变量a,一个int型指针p,一个引用r,通过p把a的值改为10,通过r把a的值改为5。
  • int a; int*p=&a; int &r=a; *p=10; r=5
  • 关注下方微信公众号,在线模考后查看

热门试题