下列能够正确进行字符串赋值操作的是()。
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);
出自:考研