网友您好, 请在下方输入框内输入要搜索的题目:

题目内容 (请给出正确答案)

3、以下程序的输出结果是______。 main() { char c='z'; printf("%c",c-25); }

A.a

B.z

C.z-25

D.y


参考答案和解析
k=4
更多 “3、以下程序的输出结果是______。 main() { char c='z'; printf("%c",c-25); }A.aB.zC.z-25D.y” 相关考题
考题 以下程序的输出结果是( )。main{int x=0.5;char z=a;printf(%d\n,(x&1)&&(z2));}A.0B.1C.2D.3

考题 下述程序的输出结果是()。includevoid main(){char a=3,b=1;char c=a^b 下述程序的输出结果是( )。 #include<stdio.h> void main() {char a=3,b=1; char c=a^b<<2; printf("%d",C; }A.1B.7C.3D.2

考题 以下程序的输出结果是()includemain(){struct stru{int a,b:char c[6];}:printf("%d\n 以下程序的输出结果是 ( ) #include<stdio.h> main() {struct stru{int a,b: char c[6]; }: printf("%d\n",sizeof(stru)), }A.2B.4C.8D.10

考题 下面程序的输出结果是______。 include main() {char *p[]="BOOL","OPK","H","SP"};int 下面程序的输出结果是______。 #include<stdio.h> main() { char *p[]="BOOL","OPK","H","SP"}; int i; for(i=3;i>=0;i-,i-) printf("%c",*p[i]); printf("\n"); }A.SOB.SPC.SPOPKD.SHOB

考题 以下程序的输出结果是 ______。 main() { int x=05;char z='a'; printf("%d\n",(x 1)(z<'z')); }A.0B.1C.2D.3

考题 下面程序的输出结果是( )。 include main() {static char a[]="china"; char*ptr=a; whi 下面程序的输出结果是( )。 include<stdio.h> main() {static char a[]="china"; char*ptr=a; while(*ptr) {printf("%c",*ptr-32); ptr++; } }

考题 以下程序的输出结果是( )。 main {int x=0.5;char z=a; printf("%d\n",(x2));}A.0S 以下程序的输出结果是( )。 main {int x=0.5;char z=a; printf("%d\n",(x&1)&&(z2));}A.0B.1C.2D.3

考题 以下程序的输出结果是 ( ) main( ) {char c='2'; printf("%c",c-25); }A.aB.ZC.z-25D.y

考题 有以下程序: main() { int x=3, y=2, z=1; printf("% d\n", x/y~z); } 程序运行后的输出结果是______。A.3B.2C.-1D.0

考题 以下程序的输出结果是【 】。main(){ char *p[]={" BOOL","OPK","H","SP"};int i;for(i=3; i0;i--,i--)printf(" %c",*p[i]);printf("\n");}

考题 下列程序执行的输出结果是()。 include main() {char a[2][4];strcpy(a,"are");strcpy( 下列程序执行的输出结果是( )。 #include<stdio.h> main() { char a[2][4]; strcpy(a,"are");strcpy(a [1],"you"); a[0][3]=''; printf("%s\n",a); }A.areyouB.youC.areD.

考题 有以下程序:include main ( ){char a :'a',b; printf( "% c," , + + a); printf("%c 有以下程序: #include <stdio. h> main ( ) { char a :'a',b; printf( "% c," , + + a); printf("%c \n" ,b =a++); }程序运行后的输出结果是( )。A.b,bB.b,cC.a,bD.a,c

考题 有以下程序: include main( ) {char s[ ] ="159" , * p;p=s;printf( "% c", * p + + 有以下程序: #include <stdio.h> main( ) { char s[ ] ="159" , * p; p=s; printf( "% c", * p + + ); printf("%~", * p++);}程序运行后的输出结果是( )。A.15B.16C.12D.59

考题 以下程序的输出结果是 main() { char cf[3][5]={"AAAA","BBB","CC"}; printf("\"%s\"\n",cf[1]);; }A.AAAAB.BBBC.BBBCCD.CC

考题 下列程序的输出结果是 ( ) main( ) { int x=0.5;char z='a'; printf("%d\n", (x 1) (z<'z')); }A.0B.1C.2D.3

考题 以下程序的输出结果是main(){ char s[]="abcdef"; s[3]=’\0’; printf("%s\n",s);}

考题 以下程序的输出结果是【】。 include main() {struct stru {int a; float b; char d[4]; } 以下程序的输出结果是【 】。include<stdio.h>main(){ struct stru{ int a;float b;char d[4];};printf("%d\n",sizeof(struct stru));}

考题 以下程序运行后输入:3,abcde回车,则输出结果是【 】include move(char *str, 以下程序运行后输入:3,abcde回车,则输出结果是【 】include <string.h>move(char *str, int n){ char temp; int i;temp=str[n-1];for(i=n-1;i>0;i--) str[i]=str[i-1];str[0]=temp;}main( ){ char s[50]; int n, i, z;scanf("%d,%s",n,s);z=strlen(s);for(i=1; i<=n; i++) move(s, z);printf("%s\n",s);}

考题 若有以下程序main(){ char a; a=’H’-’A’+’0’; printf("%c\n",a);}执行后的输出结果是

考题 有以下程序#include stdio.hvoid fun( char. c){ if(c'x') fun( c-1);printf("%c",c);}main( ){ fun(’z’); }程序运行后的输出结果是A) xyzB) wxyzC) zyxwD)zyx

考题 以下程序的输出结果是 typedef union{long x[2] int y[4]; char z[8]; } MYTYPE; MYTYPE them; main() { printf("%d\n",sizeof(them));}A.32B.16C.8D.24

考题 以下程序的输出结果是______。 main() { int x=05;char z='a'; printf("%d\n",(x1)(z<'z')); }A.0B.1C.2D.3

考题 以下程序的输出结果是 main() { char c='z'; printf("%c",c-25);}A.aB.ZC.z-25D.y

考题 以下程序的结果是______。 main() { char x=3,y=6,z; z=x^<<2; printf("%d",z); }A.25B.26C.27D.28

考题 以下程序的输出结果是 ( ) { int x=05;char z='a'; printf("%d\n",(x 1) (z<'z')); }A.0B.1C.2D.3

考题 以下程序运行后的输出结果是()。    main( )       {char m;  m=‘B’+32;printf(“%c”,m);     }

考题 填空题以下程序运行后的输出结果是()。    main( )       {char m;  m=‘B’+32;printf(“%c”,m);     }

考题 单选题有以下程序:#include main(){ char ch[3][5] = {AAAA,BBBB,CC}; printf(%s,ch[1]);}程序运行后的输出结果是(  )。A AAAAB CCC BBBCCD BBBB