单项选择题
分析以下程序,执行后的输出结果是 ( ) int f1(int x,int y) return...
单项选择题分析以下程序,执行后的输出结果是 ( ) int f1(int x,int y) return x>y x:y; int f2(int x,int y) return x>y y:x; main() int a=4,b=3,c=5,d,e,f; d=f1(a,B) ;d=f1(d,C) ; e=f2(a,B) ;e=f2(e,C) ; f=a+b+c-d-e;printf("%d,%d,%d",d,f,e);
以下各组选项中,均能正确定义二维实型数组a的选项是 ()A.float a[3][4];float a[][4...
单项选择题以下各组选项中,均能正确定义二维实型数组a的选项是 ()
A.float a[3][4]; float a[][4]; float a[3][]=1,0; B.float a(3,4); float a[3][4]; float a[][]=0,0; C.float a[3][4] static float a[][4]=0,0; D.float a[3][4]; float a[3][];
下面被调用函数sub的函数值的类型是() sub(float A. float b; b=a*a+1; re...
下面被调用函数sub的函数值的类型是() sub(float A. float b; b=a*a+1; return b; A)
A.单精度型 B.双精度型 C.空类型 D.整型