下列程序的输出结果为 #include void main( ) { char * a[ ] ={"hello},"the"," wo
19 查阅
下列程序的输出结果为
#include<iostream.h>
void main( )
{
char * a[ ] ={"hello},"the"," world"};
char * * pa=a;
pa++;
cout < < * pa < < endl;
}
A.hello
B.the
C.world
D.hellotheworld
参考答案: