当前位置: X题卡 > 所有题目 > 题目详情

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

查看本题答案

你可能感兴趣的试题

FA必须定义在FB之前  FB必须定义在FA之前  若FA定义在FB之后,则FA的原型必须出现在FB的定义之前  若FB定义在FA之后,则FB的原型必须出现在FA的定义之前  
char fun(int,int);  double fun(int,int,double);  int fun(int,char*);  float fun(int,int,int);  
f(v1,&v2);  f(v1,v2);  f(&vl,&v2);  f(&vl,v2);  
char fun(int,int);  double fun(int,int,double);  int fun(int,char*);  float fun(int,int,int);  
f(v1,&v2);  f(v1,v2);  f(&v1,&v2);  f(&1,v2);  
f(v1,& v2);  f(v1,v2);  f(& v1,v2);  f(&v1,&v2);  
f(v1,&v2);  f(v1,v2);  f(&vl,&v2);  f(&vl,v2);  
char test(int,int,int);  double test(int,int,double);  int test(int,int,int=0);  float test(int,int,float=3.5F);  
一个实数  指向一个实数的指针  该函数的地址  指向一个函数的指针  
f(v1,& v2);  f(v1,v2);  f(&v1,v2);  f(&v1,&v2);  
char fun(int,int);  double fun(int,int,double);  int fun(int,char*);  float fun(int,int,int);  
f(V1,&V2);  f(v1,v2);  f(&v1,v2);  f(&v1,&v2);  

热门试题

更多