问题 填空题

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

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

答案

参考答案:a=10

单项选择题
单项选择题 A1/A2型题