网友您好, 请在下方输入框内输入要搜索的题目:

题目内容 (请给出正确答案)
在下面的函数声明语句中,存在着语法错误的是()。

a. AA(int a, int b)

b. AA(int, int)

c. AA(int a; int b)

d. AA(int a, int)


参考答案

更多 “ 在下面的函数声明语句中,存在着语法错误的是()。 a. AA(int a, int b)b. AA(int, int)c. AA(int a; int b)d. AA(int a, int) ” 相关考题
考题 在下面的函数声明中,存在着语法错误的是 ( )。A.void BC(int a,int)B.void Bd(int,int)C.void BE(int,int=5)D.int BF(int x;int y)

考题 在下面的函数原型声明中,存在语法错误的是()A.int AA(int a,int b);B.int AA(int,int);C.int AA(int a;int b);D. intAA(int a,int)

考题 在下面字符数组的定义语句中,有语法错误的是()。 A、chara[20]=”abcdefg”;B、chara[]=”x+y= 55.”;C、chara[15]={‘1′,’2’};D、chara[10]=’5′;

考题 以下函数声明中,存在语法错误的是______ 。A.int AA(int a,int);B.int *BB (int,int);C.void CC (int,int=5);D.void*DD (x,y);

考题 在下面的函数声明中,存在着语法错误的是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)

考题 在下面的函数声明中,______ 是“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)

考题 在下面的函数声明中,存在语法错误的是______ 。A.void BC (int a,int)B.void BD (int,int)C.void BE (int,int =5)D.void BF (int x;int y)

考题 在下面的函数声明语句中,存在着语法错误的是()。AAA(int, int b)BAA(int, int)CAA(int a; int b)DAA(int a, int)

考题 在C语言中,函数的调用是可以根据需要随便调用,前面的函数可以调用后面的函数,后面的函数也可以调用前面的函数,无需声明。