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 *);