题目 / 答案提交正确答案
有如下程序: #include <stdio.h> f(int a) { int b=0; static int c=3; a=c++; b++; return(a); } int main(void) { int a=2,i,k; for(i=0;i<2;i++) k=f(a++); printf(“%d
”,k); return 0; } 该程序的输出结果是()。
A.6
B.3
C.4
D.5
正确答案:C
关键字 浏览量:次
上一篇:凡是未指明存储类别的局部变量,其隐含的存储类别是()。
下一篇:有如下程序: #include <stdio.h> fun(int a) { auto int b=0; s
相关问题
【智慧树】若某端口定义为“CQ: OUT STD_LOGIC_VECTOR(3 DOWNTO 0);”,则CQ的数据类型为()
【智慧树】STD_LOGIC_UNSIGNED和STD_LOGIC_SIGNED程序包的区别是,STD_LOGIC_SIGNED中
【智慧树】程序包()重载了可用于INTEGER型及STD_LOGIC和STD_ LOGIC_VECTOR型混合运算的运算符,并定义
【智慧树】下列程序的运行结果是()。 #include <stdio.h> void op(int (*p)[3])
【智慧树】以下程序运行时,若输入5,则程序的输出结果是()。 #include <stdio.h> int fun(i
【智慧树】若有以下程序: #include <stdio.h> void f(int *q,int n) {int i
【智慧树】以下程序运行时,若输入ab012kd99pk8,则程序的输出结果是()。 #include <stdio.h>
【智慧树】若有以下程序: #include <stdio.h> int fun(int x) { if(x>10