• 2022-06-14
    设有以下变量定义:[br][/br] char str1[]="string",str2[8],*str3,*str4="string"; ( )是正确的
    A: strcpy(str1,"China");
    B: str2="China";
    C: strcpy(*str3,"China");
    D: strcpy(str4[0],"China");