单项选择题

以下程序的输出结果是( )。
#include<iostream>
using namespace std;
void fun(char**q)

++q;
cout<<*q<<end1;

main()
static char* s []= "HI","HELLO","TEST";
char**p;
p=s;
fun(p);
system("PAUSE");
return 0;

A) 为空
B) HI C) HELLO D) TEST