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

题目内容 (请给出正确答案)

在下面的函数声明中,存在着语法错误的是 ( )。

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. int a[] ={1,2,3};B. int a[10]={0};C. int a[] ="abcdef";D. int [5]

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

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

考题 下列可实现两个实参变量值交换的函数声明是: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;