填空题
下面程序的运行结果是______。
#include<stdio.h>
main()
int a=25;
fun(&a);
fun(int *x)
printf("%d\n",++*x);
【参考答案】
Z
点击查看答案&解析
<上一题
目录
下一题>
热门
试题
填空题
以下程序的输出结果是______。 #include<stdio.h> main() fint x=0; sub(&x,16,2); printf( %d n ,x); sub(int*a,int n,int k) if(k<=n) sub(a,n 2,2*k); *a+=k;
点击查看答案&解析
填空题
以下程序的输出结果是______。 #include<stdio.h> main() int x=27; while(x>20&&x<30) x++; if(x 3)x++;break; else continue; printf( %d n ,x);
点击查看答案&解析
相关试题
以下程序的功能是将字符串s中所有小写字母...
下面程序的运行结果是______。 #de...
下面程序运行后的输出结果是______。...