a. AA(int a, int b)
b. AA(int, int)
c. AA(int a; int b)
d. AA(int a, int)
第1题:
在下面的函数声明中,存在着语法错误的是
A.void BC(int a,int)
B.void BD(int,int)
C.void BE(int,int t=5)
D.int BF(int x;int y)
第2题:
在下面的函数声明中,存在语法错误的是______ 。
A.void BC (int a,int)
B.void BD (int,int)
C.void BE (int,int =5)
D.void BF (int x;int y)
第3题:
在C语言中,函数的调用是可以根据需要随便调用,前面的函数可以调用后面的函数,后面的函数也可以调用前面的函数,无需声明。
第4题:
在下面的函数声明中,______ 是“void BC (int a,int b);”的重载函数。
A.int BC (int a,int b)
B.void BC(int a,char b)
C.float BC (int a,int b,int c=0)
D.void BC (int a,int b=0)
第5题:
在下面的函数声明语句中,存在着语法错误的是()。
AAA(int, int b)
BAA(int, int)
CAA(int a; int b)
DAA(int a, int)