填空题 下面程序的输出结果为 【10】
#inclUde<iostream.h>
void main()

int a;
int &b=a;//变量引用
b=10;
cout<<"a="<<a<<endl;


  • 1、
【正确答案】 1、a=10    
【答案解析】