資源簡介
NULL
博文鏈接:https://touch-2011.iteye.com/blog/1038925

代碼片段和文件信息
#include
void?strcat(char?*s1char?*s2)
{
while((*s1)!=‘\0‘)
s1++;
while(*s2!=‘\0‘)
*s1++=*s2++;
*s1=*s2;
}
void?main()
{
char??s1[33]=“l(fā)iu“;
char??s2[33]=“haifang“;
strcat(s1s2);
????puts(s1);
}
?屬性????????????大小?????日期????時(shí)間???名稱
-----------?---------??----------?-----??----
?????文件????????230??2011-04-02?22:05??源代碼\strcat.cpp
?????文件????????302??2011-04-02?22:15??源代碼\strcmp.cpp
?????文件????????213??2011-04-02?21:48??源代碼\strcpy.cpp
?????文件????????202??2011-04-02?22:18??源代碼\strlen.cpp
?????文件????????214??2011-04-02?22:21??源代碼\strlwr.cpp
?????文件????????214??2011-04-02?22:23??源代碼\strupr.cpp
?????目錄??????????0??2011-05-10?13:46??源代碼
-----------?---------??----------?-----??----
?????????????????1375????????????????????7
評(píng)論
共有 條評(píng)論