strcat(字符數(shù)組1,字符數(shù)組2),在C語言里有什么功能?
提問人:楊紫紅發(fā)布時間:2020-11-16
功能:將字符串2接到字符串1的后而且去掉字符串1的尾空;
如: static char str1[30]=“YangZhou ”, str2[ ]=“China”;
printf(“%s\n”,strcat(str1,str2));
說明: ①字符數(shù)組1的長度需足夠大; ②去掉字符串1的尾空。
如: static char str1[30]=“YangZhou ”, str2[ ]=“China”;
printf(“%s\n”,strcat(str1,str2));
說明: ①字符數(shù)組1的長度需足夠大; ②去掉字符串1的尾空。
繼續(xù)查找其他問題的答案?
相關(guān)視頻回答
點擊加載更多評論>>