问题 更新时间2023/4/3 12:59:00 #include void main( ) { int *a; int *&p=a; int b=10; p=&b; cout<<*a; } 输出为: 答案 登录 注册 10 出自:联大 >> 安阳师范学院-计算机应用技术-C++程序设计