南开大学 / 程序设计基础(上)
正确率:100%
已知函数原型“void fun(const int &a)”,则下列fun()函数调用正确的是()。
A.int x=3; fun(x)
B.const int y=3; fun(y)
C.fun(3)
D.以上三种都正确
参考答案: