( )能正确输出结果:C++。
A.char s[]="C++";cout<
B.char s[3]="C++";cout<
C.char s[3]={'C','+','+','\0'};cout<
D.char s[3]={'C','+','+'};cout<
E.A
F.2
正确答案是A