[单选题]
已知函数f的原型是void f(int*a,long &b);,变量v1、v2的定义是:
int v1;long v2;
下列调用语句中正确的是( )。
A.f(v1,&v2);;
B.f(v1,v2);
C.f(&v1,&v2);
D.f(&v1,v2);
参考答案与解析: