A-A+
若主函数有变量定义:int x=1 ; double y=2.3 ; 且有合法的函数调用语句f (y x); 则下列关于函
问题详情
若主函数有变量定义:int x=1 ; double y=2.3 ; 且有合法的函数调用语句f (y , x); 则下列关于函数f的原型声明中一定错误的是 。
A.void f(double, int);
B.int f(int , int);
C.int f(double, double);
D.void f(double, int, int);
参考答案
void f(double, int, int);