问题
单项选择题
下面程序错误的语句是
#include“iostream.h”
① void main( )
②
③ int A=0;
④ int &B;
⑤ B=A;
⑥ cout<<B;
⑦ cout<<A;
⑧
A.②
B.③
C.④
D.⑥
答案
参考答案:C
解析:[命题目的] 考查引用的用法。
[解题要点] 引用必须在第一时间进行赋值,int & B没有在第—时间赋值故错误。
[考点链接] 引用的方式,引用和指针应用的比较。