以下函数定义的类型符是( )。 fff(double x) { printf("%f",x+x); }A.与x类型相同B.void类型C.int类型D.无法确定
以下函数定义的类型符是( )。 fff(double x) { printf("%f",x+x); }
A.与x类型相同
B.void类型
C.int类型
D.无法确定
相关考题:
有下列函数定义: fun(float h) { printf("%f,%f\n",h,h*h);) 该函数的类型是( )。A.int类型SX 有下列函数定义: fun(float h) { printf("%f,%f\n",h,h*h);) 该函数的类型是( )。A.int类型B.float类型C.void类型D.函数无类型说明,定义有错
设有如下的函数 funct(x) float x; {x*=x;printf("\n%d",x);return(x);} 则函数的类型( )A.与参数x的类型相同B.voidC.intD.无法确定
以下函数返回值的类型是()。 fff(float x) { x=x+5; return x; }A.void 类型B.与参数x的类型相同C.int类型D.无法确定