A.test(5);
B.test(5,8);
C.test(6,’#’);
D.test(0,0,’x’);
[单选题]考虑函数原型void test(int a, int b=7,char z='*'),下面的函数调用中,属于不合法调用的是A.test(5);B.test(5,8);C.test(6,'#');D.test(0,0,'*');
[单选题]考虑以下的函数原型:void A(int a,int b=5,char Z='*');下面的函数调用中,不正确的是( )。A.A(7)B.A(3,4)C.16,'#'D.A(O,2,'*
[单选题]考虑下面的函数原型: void f(int a,int b=7,char c='@'); 下面的函数调用中,不合法的是A.f(5)B.f(5,8)C.f(6,'&')D.f(0,0,'@')
[单选题]考虑下面的函数原型: void f(int a,int b=7,char c='@'); 下面的函数调用中,不合法的是( )。A.f(5)B.f(5,8)C.f(6,'&')D.f(0,0,'@')
[单选题]考虑函数原型void fuc(int x,int y=5,char z='*'),下面函数调用不合法的是( )。A.fuc(3);B.fuc(3,6);C.fuc(3,'*');D.fuc(3,6,'*');
[单选题]考虑以下的函数原型:vold A(int a,int b=5,char Z='*')'下面的函数调用中,不正确的是A.A(7)B.A(3,4)C.16,'#'D.A(0,2,'*')
[单选题]对于函数原型void function(int x,float y,char z='a'),合法的函数调用是( )。A.function(2,3.Of)B.function(2,3,4)C.function(2)D.function()
[单选题]假设函数fun已经定义,其原型为“void fun(int a,int b=7,char *P=“**”)”,下列函数调用错误的是( )。A.fun
[单选题]假设函数fun已经定义,其原型为“void fun(int a,int b=7,char*p=“**”);”,下列函数调用中错误的是( )。A.fu
[单选题]已知程序中已经定义了函数test,其原型是int test(int, int, int);,则下列重载形式中正确的是A.char test(int,int,int);B.double test(int,int,double);C.int test(int,int,int=0);D.float test(int,int,float=3.5F);