问题:
A、char s[10]="abcdefg";
B、char t[]="abcdefg", * s=t;
C、char s[10]; s="abcdefg";
D、char s[10]; strcpy(s, "abcdefg");
相关内容