函数首部定义为:int max(int a,int b)的函数,下列函数声明语句正确的是()
举一反三
- 中国大学MOOC: 函数首部定义为:int max(int a,int b)的函数,下列函数声明语句正确的是()。
- 函数首部定义为:int max(int a,int b)的函数,下列函数声明语句正确的是()。 A: int max(int,int); B: int max(int a,int b); C: int max(int b,int a); D: int max(int x,int y);
- 函数调用语句为: int a[10],maxnum; … maxnum=max(a); 函数定义首部应为()。
- 若以下函数首部:int fun ( doublex[10],int *n )则下列针对此函数的函数声明语句中正确的是()。 A: int fun(double x,int *n); B: intfun(double ,int ); C: int fun(double *x,int n); D: int fun(double *,int *);
- 若有以下函数首部 int fun(double x[10], int *n),则下面针对此函数的函数声明语句中正确的是 。