你可能感兴趣的试题
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(x,&y); f(x,y); f(&x,&y); f(&x,y);
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);