單項選擇題函數(shù)調(diào)用strcat(strcpy(str1,str2),str3);的功能是()。

A.將字符串str1復(fù)制到字符串str2中后再連接到字符串str3之后。
B.將字符串str1連接到字符串str2之后再復(fù)制到字符串str3之后。
C.將字符串str2復(fù)制到字符串str1中后再將字符串str3連接到字符串str1之后。
D.將字符串str2連接到字符串str1之后再將字符串str1復(fù)制到字符串str3中。


您可能感興趣的試卷

你可能感興趣的試題

3.單項選擇題下列各語句定義了數(shù)組,其中哪一個是不正確的()。

A.chara[3][10]={”China”,”American”,”Asia”};
B.intx[2][2]={1,2,3,4};
C.floatx[2][]={1,2,4,6,8,10};
D.intm[][3]={1,2,3,4,5,6};