单项选择题

下列程序的输出结果是( )。
#include<iostream>
using namespace std;
int main()

char a[]="Hello,Test";
char *p=a;
while(*p)

if(*p>=’a’&&*p<=’’z’)
cout<<char(*p+’A’-’a’);
else cout<<*p;
p++;

return 0;

A.hello,test
B.Hello,Test
C.HELLO,TEST
D.hELLO,tEST