题目 / 答案提交正确答案
有如下程序: #include <stdio.h> fun(int a) { auto int b=0; static int c=3; b=b+1;c=c+1; return(a+b+c); } int main(void) { int a=2,i; for(i=0;i<3;i++) printf(“%d “,fun(a)); return 0; } 它的输出结果是()。
A.7 8 9
B.7 7 7
C.9 9 9
D.8 9 10
正确答案:A
关键字 浏览量:次
上一篇:有如下程序: #include <stdio.h> f(int a) { int b=0; static i
下一篇:有如下程序: #include <stdio.h> void fun(int x,int y) { int
相关问题
【智慧树】若某端口定义为“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