试题详情

已知函数f的原型是:void f(int *a, long &b); 变量v1、v2的定义是:int v1;long v2;,正确的调用语句是( )。

A f(v1, &v2);

Bf(v1, v2);

Cf(&v1, v2);

Df(&v1, &v2);