单项选择题

下列程序的输出结果为( )。 #include<iostream.h> void main() { int x; int &y=x;//变量引用 y=99; cout<<"x="<<x<<end1; }

A.x=99
B.x=9
C.x=0
D.异常