没有搜到到结果?点击这里求解答/求资源。
【单选题】
下面程序运行结果是() #include stdio.h main( ) { char a[]=morning,t; int i,j=0; for(i=1;i if(a[j]j=i; t=a[j]; a[j]=a[7]; a[7]=a[j]; puts(a); }

mogninr
mo
morning
mornin
【单选题】
下面程序输出结果是()。#includestdio.hintnum=10;func(){intnum=4;return++num;}voidmain(){printf("%d\n",func());}

4
5
10
11
【单选题】
以下程序运行结果是()。charstr[3][2]={a,b,c,\0,e,f};printf("%s",str[0]);

a
abcef
abc\0ef
abc
【单选题】
以下程序运行输出结果是。main(){ int p=30;printf(%d\n,(p/320?p/10:p%3)); }

0
1
2
3
【单选题】
以下程序运行结果是( )。 Main() {int if(m++5) printf(%d\n else printf(%d\n,m--); }

4
5
6
7
【单选题】
下面程序执行后结果是() #include stdio.h int m=0; void fun( ) { m++; } void main( ) { m++; fun( ); m++; printf(%d,m); }

0
1
2
3
【单选题】
下面程序执行后结果是() #include stdio.h void fun( ) { int i,sum=0; int a[5]={1,2,3,4,5}; for (i=0;i { if (a[i]%2==0) { sum+=a[i]; } } printf(%d,sum); } void main( ) { fun( ); }

6
15
9
11
【单选题】
下面程序运行结果是()。#includestdio.huniondata{inti;charc;doubled;}a[2];voidmain(){printf("%d\n",sizeof(a));}

16
8
4
2
【单选题】
有如下程序: #includevoid main( ) { int a=2,b=-1,c=2; if (ab) if (b0) c=0; else c++; printf(%d\n } 该程序输出结果是

0
1
2
3
【简答题】
以下程序运行结果是[填空1]。 #include stdio.hvoid main(){int i=1,s=0;do{s+=i++;if (s%7==0)continue;else++i;} while (sprintf(%d\n}