单项选择题

下列程序的输出结果为( )。
#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