阅读下面语句,则执行后的输出结果为 【8】
#include "stdio.h"
main()
{char a,b;
for(a=′0′,b=′9′;a <b;a++,b--)
printf( "%c%c",a,b);
printf("\n");}
第1题:
阅读下面程序段,则执行后输出的结果是 #include"stdio.h" main() { char fun(char,int); char a='A'; int b=13; a=fun(a,b); putchar(a);} char fun(char a,int b) { char k; k=a+b; return k;}
A.A
B.M
C.N
D.L
第2题:
下列程序执行的输出结果是( )。
#inClude<stdio.h>
main()
{ char a[2][4];
strcpy(a,"are");strcpy(a[1],"you");
a[0][3]='&';
printf("%s\n",A) ;
}
A.are&you
B.you
C.are
D.&
第3题:
阅读下面语句,则程序的执行结果是______。
include"stdio.h"
main()
{ inta=-1,b=1,k;
if((++a<0)&&! (b--<=0))
printf("%d,%d\n",a,b);
else printf("%d,%d\n",b,a);}
第4题:
下列程序执行的输出结果是( )。 #include<stdio.h> main() { char a[2][4]; strcpy(a,"are");strcpy(a[1],"you"); a[0][3]='&'; printf("%s\n",a); }
A.are&you
B.you
C.are
D.&
第5题:
阅读下面语句,则程序的执行结果是【 】。
include "stdio.h"
main()
{ int a=-1,b=1,k;
if((++a<0)&&!(b--<=0))
printf("%d,%d\",a,b);
else printf("%d,%d\n",b,a);}