执行下述程序的输出结果是______。
执行下述程序的输出结果是______。
相关考题:
下述程序执行的输出结果是( )。includestdio.hmain( ){char a[2][4];strcpy(a。are);strcpy(a[1],you);a[o][3]=;printf(%s\n,a);}A.are&youB.youC.areD.&
下述程序执行的输出结果是( )。 #includestdio.h main( ) {char a[2][4]; , strcpy(a。"are");strcpy(a[1],"you"); a[o][3]=; printf("%s\n",a); }A.areyouB.youC.areD.
若程序执行时的输入数据是"2473",则下述程序的输出结果是includevoid main(){int cs;w 若程序执行时的输入数据是"2473",则下述程序的输出结果是 #include<stdio.h> void main() { int cs; while((cs=getchar())!=,'\n') {switch(cs='2') { case0 case 1:putchar(cs+4); case 2:putchar(cs+4); break; case 3:putchar(cs+3);default:putchar(cs+2);}}}A.668977B.668966C.6677877D.6688766
下述程序执行的输出结果是( )。 #includestdio.h main { char a[2][4]; strcpy(a,"are");strcpy(a[1],"you"); a[0][3]=&; printf("%s\n",a): }A.are&youB.youC.areD.&
若执行下述程序时,从键盘输入的数据是3和6,则程序的输出结果是()。includevoid main(){ 若执行下述程序时,从键盘输入的数据是3和6,则程序的输出结果是( )。 #include <stdio.h> void main() {int x,y,z; scanf("%d%d",X,y); z = y + x; if (x<y) z = y + x; printf("%d",z); }A.9B.3C.0D.有语法错误
下述程序执行的输出结果是( )。#includemain{ char a[2][4];strcpy(a,are);strcpy(a[1],you);a[0][3]=&;printf(%s\n,a);}A.are&youB.youC.areD.&