A.100
B.160
C.120
D.64
[单选题]以下程序的输出结果是includevoid main(){char x=040;cout<<(x<<1);}A.100B.80C.64以下程序的输出结果是 #include<iostream.h> void main() { char x=040; cout<<(x<<1);}A.100B.80C.64D.32
[单选题]以下程序的输出结果是includevoid main( ){char x=040;cout < < (X < < 1) ;}A.100以下程序的输出结果是 #include<iostream.h> void main( ) { char x=040; cout < < (X < < 1) ;}A.100B.80C.64D.32
[单选题]以下程序的输出结果是includevoid main( ){char x=040;cout<<(X<<1);}A.100B.80C.6以下程序的输出结果是 #include<iostream.h> void main( ) { char x=040; cout << (X<<1) ;}A.100B.80C.64D.32
[单选题]下面程序的输出结果是()。char b[]="ABCD";main(){char b[30];strcpy(&b[0],"GH");strcpy(&am下面程序的输出结果是[ ]。char b[]="ABCD";main(){char b[30];strcpy(&b[0],"GH");strcpy(&b[1],"GH");strcpy(&b[2],"GH");printf("%s/n",b);}
[单选题]下面程序的输出结果是______。 inc1ude main() {char*p[]={"BOOL","OPK","H","SP"};int下面程序的输出结果是______。 #inc1ude<stdio.h> main() { char*p[]={"BOOL","OPK","H","SP"}; int i; for(i=3;i>=0;i-,i-) prinf("%c",*p[i]); print("/n") }A.SOB.SPC.SPOPKD.SHOB
[单选题]下面程序的输出结果是______。 main() { char str[10],c='a'; int i=0; for(;i<5;i++) Str[i]=c++; printf("%s",str); }A.abcdeB.aC.不确定D.bcdef
[单选题]下面程序的输出结果是_____。 main() { char str[10],c='a'; int i=0; for (;i<5;i++) str[i]=c++; printf("%s",str); }A.abcdeB.aC.不确定D.bcdef
[单选题]以下程序的输出结果是______。 main() { int x=05;char z='a'; printf("%d/n",(x&1)&&(z<'z')); }A.0B.1C.2D.3
[单选题]下列程序的输出结果是( )。 point(char*pt); main() { char b[4]{'a','c','s','f'},*pt=b; pt=point(pt); printf("%c/n",*pt); } point(char*p) { p+=3; return p; }A.sB.cC.fD.a
[单选题]下列程序的输出结果是( )。point(char*pt);main(){ char b[4]={'a', 'c' ,'s' ,'f'},*pt=b; pt=point(pt); printf('%c/n",*pt);}point(char*p){ p+=3; return p;}A.sB.cC.fD.a