单项选择题

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

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