在下面的函数声明中,存在着语法错误的是 ( )。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.void BC(int a,int)
B.void Bd(int,int)
C.void BE(int,int=5)
D.int BF(int x;int y)
相关考题:
在下面的函数声明语句中,存在着语法错误的是()。 a. AA(int a, int b)b. AA(int, int)c. AA(int a; int b)d. AA(int a, int)
在下面的函数原型声明中,存在语法错误的是()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.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)
在下面的函数声明中,存在语法错误的是______ 。A.void BC (int a,int)B.void BD (int,int)C.void BE (int,int =5)D.void BF (int x;int y)
下列可实现两个实参变量值交换的函数声明是:A.void swap(int a, int b);B.void swap(const int a, const int b);C.void swap(int *a, int *b);D.void swap(int * const a, int* const b);
下面声明数组的写法正确的是()A.int a[];B.int[] a;C.int[3][] a;D.int[][3] a;