#include
void main()
{
char,a[]={”hello",”the",”world”};
char**pa=a:
pa++;
cout<<*pa<
}
A.hello
B.the
C.world
D.hellotheworld
[主观题]下面程序的输出结果为 (8) 。#includevoid main(){int num=0,i=8;do{i--;num++;}while(--i):cout<<}
[单选题]下面程序的输出结果是#include#includevoid main(){char p1[10],p2[10];strepy(p1,”abc”):strcpy(p2,”ABC”);char str[50]=”xyz”;strcpy(str+2,strcat(p1,p2));cout <}A.xyzabcABCB.zabcABCC.xyabcABCD.yzabcABC
[单选题]下列程序的输出结果为 include void main( ) { char * a[ ] ={"hello},"the"," wo下列程序的输出结果为#include<iostream.h>void main( ){char * a[ ] ={"hello},"the"," world"};char * * pa=a;pa++;cout < < * pa < < endl;}A.helloB.theC.worldD.hellotheworld
[单选题]下面程序的输出结果为______。 include main() { char p1[7]="abc",p2[]="ABC",str[50下面程序的输出结果为______。 #include<string.h> main() { char p1[7]="abc",p2[]="ABC",str[50]="xyz"; strcpy(str,strcat(p1,p2)); printf("%s",str); }A.xyzabcABCB.abcABCC.xyzabcD.xyzAB
[主观题]下面程序的输出结果是(9)。#includevoid main(){int a[6]={1,2,3,4,5,6};for(int i=0;i <5;i++)cout <<cout <}
[单选题]下列程序的执行结果为#includevoid main(){int a=3,b=0;int*p=&a:b=+a++;cout<<*P<<”,”<<}A.3,4B.4,3C.3,4D.4,4
[单选题]下列程序的运行结果为#includevoid main(){int a=2:int b=a+1;cout <<}A.0.66667B.0C.0.7D.0.66666666…
[单选题]下列程序的输出结果是()。 include main() {char a[]={'a','b','c','d','e','f','/0'};下列程序的输出结果是( )。#include<stdio.h>main(){ char a[]={'a','b','c','d','e','f','/0'};int i,j;i=sizeof(A) ;j=strlen(A) ;printf("%d,%d",i,j);}A.7,7B.7,6C.6,6D
[单选题]下列程序的输出结果是()。 include main() { char a[]= {'a','b','c','d','e','f,'/0'}下列程序的输出结果是( )。 #include<stdio.h> main() { char a[]= {'a','b','c','d','e','f,'/0'}; int i,j; i=sizeof(a); j=strlen(a); printf("%d,%d",i,j); }A.7,7B.7,6C.
[单选题]以下程序的输出结果是#includevoid main(){ int x=1,y=3;cout <<{int x=0;x+=y*2;cout <<<<}cout <<<}A. 1,6,3,1,3B.1,6,3,6,3C.1,6,3,2,3D.1,7,3,2,3