1.请用上 strcat的源码 编一个最简单的c程序!急!!医院质控系统源码!!源码阅读nacos!cs通道源码!
请用上 strcat的源码 编一个最简单的c程序!急!!!!!家园7源码!
#include <stdio.h>
#include <string.h>
char
*mystrcat (char* dst,跑腿源码net 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);
}