填空题
下列程序执行输出的结果是______。
#include <stdio.h>
f (int a)
int b=0;
static c=7;
a=c++; b++;
return (a);
main()
int a=2,i,k;
for(i=0;i<2;i++)
k=f(a++);
printf("%d\n", k);
【参考答案】
H
点击查看答案&解析
<上一题
目录
下一题>
热门
试题
填空题
有下列程序: #include <stdio.h> main() char C; while((c= getchar ())!=’,’) putchar(++c); 程序运行时,如果从键盘输入:A,B,<CR>,则输出结果为______。
点击查看答案&解析
填空题
下列程序的输出结果是______。 main() int a=1,b=2,c=3,t=0; if(a<b) t=a; a=b; b=t; if(a<c) t=a; a=c; c=t; printf( %d, %d, %d n , a, b, c);
点击查看答案&解析
相关试题
需求分析阶段的任务是( )。
若有 double a; ,则正确的输入语句是...
函数调用strcat (strcpy(str1,str2)...
有下列二叉树,对此二叉树前序遍历的结果为...
己知一个有序线性表为(13,18,24,...