问题 填空题

下面程序的输出结果为______。
#include <iostream.h>
void main()

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

答案

参考答案:a=10

单项选择题
名词解释