• 2022-05-27
    若有定义:char strl[20]="a good ", str2[ ]="student"; 以下能将字符串str1变为"a good student"的语句是( )。
    A: strcat(str1, str2);
    B: strcpy(str1, str2);
    C: str1 = str1 + str2;
    D: str1 = str1 & str2;