单项选择题

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

A.f(vl,&v2);
B.f(v1,v2);
C.f(&vl,&v2);
D.f(&vl,v2);