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

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

下面程序在屏幕上的输出是________。 int main() { printf(”ab\b\b c”); } A)ab\b\b c B)a c C)abc D)ab c


参考答案和解析
B 解析:C语言中允许使用一种特殊形式的字符常量,就是以一个“\\”开头的字符序列,这样的字符称为“转义字符”。常用的转义字符有:\\n,换行;\\t,水平制表;\\b,退格;\\r,回车。
更多 “下面程序在屏幕上的输出是________。 int main() { printf(”ab\b\b c”); } A)ab\b\b c B)a c C)abc D)ab c” 相关考题
考题 以下程序运行后的输出结果是 【 8 】 。main(){ int x,a=1,b=2,c=3,d=4;x=(ab)?a:b; x=(xc)?x:c; x=(dx) ? x : d;printf("%d\n",x);}

考题 ( 26 )有以下程序#include stdio.hvoid fun ( char *c , int d ){*c=*c+1 ; d=d+1 ;printf ( " %c , %c , ", *c , d ) ;main (){ char b= ‘ a ’ , a= ‘ A ’ ;fun ( b , a ) ; printf ( " %e , %e \ n ", b , a ) ;}程序运行后的输出结果是A ) b , B , b , AB ) b , B , B , AC ) a , B , B , aD ) a , B , a , B

考题 以下程序运行后的输出结果是( )。main(){int a=2,b=3,c; c=a; if(ab)c=1; else if(a==b)c=0; else c=-1; printf("%d\n",c);}A.1 B.3 C.-1 D.0

考题 若执行下面的程序时,从键盘输入5和2,则输出结果是main(){ int a,b,k;scanf("%d,%d ",a,b);k=a;if(ab)k=a%b;else k=b%a;printf("%d\n",k);}A.5B.3C.2D.0

考题 下面程序在屏幕上的输出是______。 main() { printf("ab\b\bc"); }A.ab\b\bcB.acC.abcD.abc

考题 有以下程序:include main(){ inta=1,b=2,c=3,x; x=(ab)c; printf("%d\n",x);}程 有以下程序: #include <stdio.h> main() { int a=1,b=2,c=3,x; x=(ab)c; printf("%d\n",x); } 程序的运行结果是( )。A.0B.1C.2D.3

考题 以下C程序段的输出结果是(30)。 include void abc(char *str){ int a, b; 以下C程序段的输出结果是(30)。 #include <stdio. h> void abc(char *str){ int a, b; for(a=b=0;str[a]!='\O';a++)if(str[a]!='c') str[b++]=str[a]; str[b]='\O'; } void main(){ char str[]="abcdef"; abc(str); printf("str[]=%s",str); }A.str[]=aB.str[]=abC.str[]=abdefD.str[]=abcdef

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

考题 有以下程序fun(int a, int b){ if(ab) return(a);else return(b);}main( ){ int x=3, y=8, z=6, r;r=fun(fun(x,y), 2*z);printf("%d\n", r);}程序运行后的输出结果是A.3B.6C.8D.12

考题 下面程序的输出是______。 char s[]="ABCD"; main() { char *p; for(p=s;p<s+4;p++) printf("%s\n",p); }A.ABCD BCD CD DB.A B C DC.D C B AD.ABCD ABC AB A

考题 有以下程序段 main() { char a[7]="abcdef"; charb[4]="ABC"; strcpy(a,b) ; printf("%c",a[5]); } 程序段运行后的输出结果是( )A.aB.\0C.eD.f

考题 以下程序运行后的输出结果是 ______。 main() { char m; m='B'+32;printf("%c\n",m); }A.aB.bC.cD.d

考题 有以下程序main( ){ int a=3,b=4,c=5,d=2;if(ab)if(bc)printf("%d",d++ +1);elseprintf("%d",++d +1);printf("%d\n",d);}程序运行后的输出结果是A.2B.3C.43D.44

考题 有如下程序main() { int a=2,b=-1,c=2; if(ab) c=1; if(b0)c=0; else c++; printf("%d\n",c);}该程序的输出结果是A.0 B.1C.2 D.3

考题 有以下程序 void fun(char *c,int d) { *c=*c+1;d=d+1; printf(“%c,%c”,*c,d); } main() { char a='A',b='a'; fun(b,a);printf(“%c,%c\n”,a,b); } 程序运行后的输出结果是A.B,a,B,aB.a,B,a,BC.A,b,A,bD.b,B,A,b

考题 下列程序的输出结果是( )。 main { int a=6,b=3,C; if(ab) {c=a*b;printf("%d%d,%d\n",b,a,c);) else {c=b/a;printf("%d,%d,%d\n",b,a,c);) }A.3,6,18B.3,6,2C.6,3,18D.6,3,2

考题 下面程序的输出结果是()。includemain(){char a[]={'a','b','c','d','f','g'},*p;p=a;p 下面程序的输出结果是( )。 #include<stdio.h> main() {char a[]={'a','b','c','d','f','g'},*p; p=a; printf("%c\n",*p+4); }A.aB.bC.eD.f

考题 下面程序的输出结果是 #include stdio.h main(){ int i=2; printf("%d",f(i,i+1) ); } int f(int a,int b) { int c; c=a; if(ab) c=1; else if(a==b) c=0; else c=-1; return(c);}A.-1 B.0 C.1 D.2

考题 下面程序在屏幕上的输出是______。 main() { printf("ab\b\bc"); }A.ab\b\bcB.acC.abcD.ab c

考题 下面程序的输出结果是( )。 char s()="ABCD",*p; main() { for(p=s;p<s+4;p++)printf("%s\n",p); )A.ABCD BCD CD DB.A B C DC.D C B AD.ABCD ABC AB A

考题 下面程序的输出结果是______。includemain(){char ch[7]={"12ab56"}; int i,s=0; for(i 下面程序的输出结果是______。 #include<stdio.h> main() { char ch[7]={"12ab56"}; int i,s=0; for(i=0;ch[i]>='0'ch[i]<='9';i+=2) s=10*s+ch[i]-'0'; printf("%d\n",s); }A.1B.1256C.12ab56D.1 2 5 6

考题 下列程序的输出结果是( )。 #includestdio.h main( ) { int a=2,b=3,P; p=f(a,b); printf(”%d”,p); } int f(a,b) { int c; if(ab)c=1; else if(a==b)c=0; else c=-l; return(c); }A.-lB.0C.1D.2

考题 下列程序的输出结果是( )。 #includestdio.h main { int a=3,b=2,c=1; if(ab) if(b0)c=0; else c++: printf("%d\n",c); }A.2B.0C.1D.不确定的值

考题 有以下程序: void fun(char *c,int d) { *c= *c+1;d+=1; printf("%c,%c,",*c,d); } main( ) { char a='A',b='a'; fun(&b,a);printf("%c,%c\n",a,b); } 程序运行后的输出结果是A.B,a,B,aB.a,B,a,BC.A,b,A,bD.b,B,A,b

考题 给出下面程序的输出结果includeiostreamusing namespace std;int min(int a,int b){if(ab)return a;else return b;return 0;}void main(){coutmin(1,min(2,3))endl;}

考题 有如下程序:main{ int a=2,b=-1.c=2;if(ab)if(b0)c=0;else c++;printf(%d\n,c);}该程序的输出结果是( )。A.0B.1C.2D.3

考题 下列各语句中,能够输出整型变量a、b中最大值的是()。A、printf(”%d/n”,(ab)?a,b);B、(ab)?printf(”%d”,a):printf(”%d”,b);C、printf(”%d”,if(ab)aelseb);D、printf(”%d/n”,(ab)?a:b);

考题 单选题有以下程序:#include main(){ int a=3; int b=3; printf(%d, ab);}程序运行后的输出结果是(  )。A 6B 1C 0D 3