中国大学MOOC: 函数首部定义为:int max(int a,int b)的函数,下列函数声明语句正确的是()。
int max(int,int); int max(int a,int b); int max(int b,int a); int max(int x,int y);
举一反三
- 函数首部定义为: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); 函数定义首部应为()。
- 中国大学MOOC: 设有下列变量定义与函数声明,则合法的函数调用语句是()。int x,y;void swap(int *p,int *q);
- 中国大学MOOC: 有函数原型声明: void f( int *);主函数中有变量定义: int a,b[3],*p=&a;下列函数调用语句错误的是_______
内容
- 0
中国大学MOOC: 用户自定义函数max(int x,int y,int z),该函数中定义了( )个参数。
- 1
若以下函数首部: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 *);
- 2
若有以下函数首部 int fun(double x[10], int *n),则下面针对此函数的函数声明语句中正确的是 。
- 3
以下正确的函数首部定义形式是 。 A: double max( int x , int y ); B: double max( int x , int y ) C: double max( int x ; int y ) D: double max( int x , y );
- 4
中国大学MOOC: 有函数原型为void f(int, int *);,主函数中有变量定义:int a=2, *p=&a; 则下列函数调用正确的是