
A.)xyzWHOwho
B.)yWHOwho
C.)zWHOwho
D.)xWHOwho
[单选题]下面程序的输出结果是( )。A.)0B.)1C.)10D.)9
[单选题]下面程序运行后的输出结果是_____。 struct abc { int a,b,c; } main() { struct abc s[2]={{1,2,3},{4,5,6}}; int t=s[0].a+s[1].b; printf("%d/n",t); }A.5B.6C.7D.8
[单选题]下面程序运行后的输出结果是______。 struct abc { int a,b,c; } main() { struct abc s[2]={{1,2,3},{4,5,6}}; int t=s[0].a+s[1].b; printf("%d/n",t); }A.5B.6C.7D.8
[单选题]下面程序运行后的输出结果是______。 struct abc { int a,b,c; } main() { struct abc s[2]={{1,2,3},{4,5,6}}; int t=-s[0].a+s[1].b; printf("%d/n",t); }A.5B.6C.7D.8
[单选题]下面程序的输出结果是( )。A. ABCDEFB. FEDCBAC. AD. F
[单选题]下面程序的输出结果是( )。A.2B.4C.8D.16
[单选题]下面程序的输出结果是()。A . 1B . 1和-3C . 2和0D . 死循环
[单选题]下面程序运行后的输出结果是( )。struct abc{int a,b,c;}main(){struct abc s[2]={{1,2,3},{4,5,6}};int t;t=s[0].a+s[1].b;printf("%d/n",t);}A.5 B.6 C.7 D.8
[单选题]下面程序的输出结果是includeincludevoid main( ){char p1[10],p2[10]s下面程序的输出结果是 #include<iostream.h> #include<string.h> void main( ) { char p1[10],p2[10] strcpy(p1,"abc"); strcpy(p2,"ABC"); char str[50]="xyz"; strcpy(str+2,strcat(p1,p2)); cout<<str; }A.xyza
[单选题]下面程序的输出结果是includeincludevoid main( ){char p1[10],p2[10]s下面程序的输出结果是 #include<iostream.h> #include<string.h> void main( ) { char p1[10],p2[10] strcpy(p1,"abc"); strcpy(p2,"ABC"); char str[50]="xyz"; strcpy(str+2,strcat(p1,p2));A.xyzabcABCB.zabcAB