给定函数原型如下: int f(int p[]); 而另有变量定义如下: int a[10],x; 哪个对函数的调用是错误的?

A.a[0]=f(x); B.f(a); C.x=f(&a[0]); D.a[0]=f(a);

时间:2023-11-11 11:42:39

相似题目