下列程序的输出结果为( )。 #include (iostream) using namespace std; void main( ) char,a[ ] = { "hello" ," the" ," world" }; ch

admin2009-01-15  30

问题 下列程序的输出结果为(   )。  #include (iostream)  using namespace std; void main( )      char,a[ ] = { "hello" ," the" ," world" };      char * * pa = a:      pa + +;        cout << * pa << ENDL;  }

选项 A、hello
B、the
C、world
D、hellotheworld

答案2

解析 指针与数组对应关系,*p++访问数组第二个元素。
转载请注明原文地址:https://jikaoti.com/ti/0zd0FFFM
0

最新回复(0)