A、 char s[10]="abcdefg";
B、 char t[]="abcdefg",*s=t;
C、 char s[10];s="abcdefg";
D、 char s[10];strcpy(s,"abcdefg");
答案:C