( 14 )下面的函数定义是某函数模板能够生成的函数实例
int square(int n) {return n*n;}
double square(double n) {return n*n;}
由此可知,该函数模板的定义是 【 15 】 。
第1题:
若有以下函数首部: int fun(double x[10],int *n) 则下面针对此函数的函数声明语句中正确的是( )。
A.int fun(double x, int *n);
B.int fun(double, int);
C.int fun(double *x, int n);
D.int fun(double*, int*);
第2题:
若有以下函数首部 int fun(double x[lO],int *n) 则下面针对此函数的函数声明语句中正确的是______。
A.int fun(double x, int *n);
B.int fun(double, int);
C.int fun(double *x, int n);
D.iht fun(double*,int*);
第3题:
若有以下函数首部:
int fun(double x[10],int*n)
则下面针对此函数的函数声明语句中正确的是( )。
A.int fun(double,int);
B.int fun(double木,int*);
C.int mn(double*x,int n);
D.int fun(double x,intint*n)
第4题:
若有以下函数首部
int fun (double x[10],int *n)
则下面针对此函数的函数声明语句中正确的是
A.int fun(double x, int *n);
B.int fun(double , int);
C.int fun(double *x, int n);
D.int fun(double *, int *);
第5题:
若有以下函数首部 int fun(double x[10],int *n) 则下面针对此函数的函数声明语句中正确的是
A.int fun(double x,int *n);
B.int fun(double ,int);
C.int fun(double *x,int n);
D.int fun(double *,int *);