A. 对 B. 错
A. char s[5]={"abc"}; B. char s[5]={'a','b','c'}; C. char s[5]=""; D. char s[5]="abcdef";
A. 运行后将输出China B. 运行后将输出Ch C. 运行后将输出Chi D. 编译出错