1.请用上 strcat的源码 编一个最简单的c程序!急!!燕窝溯源码是否为强制性的!!期货捕猎者源码!金庸wap游戏源码!
请用上 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);
}