不用string.h实现连接字符串函数
#include
char* connect_str(char* des,const char* src);
int main()
{
char a[20]="hello";
char b[20]="world";
puts(connect_str(a,b));
//connect_str(a,b);puts(a);
return 0;
}
char * connect_str(char* des,const char* src)
{
char *a=des;
while (*des)
{
des++;
}
while (*src)
{
*des++=*src++;
}
*des='\0';//字符串的最后记得加上'\0'
return a;
}
PS D:\_code_C\coin> .\connect_str.exe
helloworld
PS D:\_code_C\coin>
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)