单项选择题

下面各语句中,能正确进行赋字符串操作的语句是

A.char s[5] = "ABCDE" ;
B.char s[5] = 'A' ,' B' ,' C' ,' D' ,' E' ;
C.char *s; s = "ABCBE";
D.char *s; scanf("%s", s);