请用上 strcat的源码 编一个最简单的c程序!急!!!!!在线咨询 源码!
#include <stdio.h>
#include <string.h>
char
*mystrcat (char* dst,闪电试用源码 char* src)
{
char *d;
if (!dst || !src)
return (dst);
d = dst;
for (; *d; d++);
for (; *src; src++)
*d++ = *src;
*d = 0;
return (dst);
}
main()
{
char outstr[];
strcpy(outstr,"she is ");
mystrcat(outstr,"Kitty!");
printf(outstr);
}
2024-11-30 15:04
2024-11-30 14:38
2024-11-30 14:21
2024-11-30 13:27
2024-11-30 13:05