找考题网-背景图
单项选择题

下列能够正确进行字符串赋值操作的是()。

A.char s[5]={“ABCDE”};
B.char *s; s=“ABCDE”;
C.char s[5]={‘A’,‘B’,‘C’,‘D’,‘E’};
D.char *s; scanf(“%s”,s);