1.请用上 strcat的源码 编一个最简单的c程序!急!!linuxc源码分析!!aeo 源码!adc源码!
请用上 strcat的源码 编一个最简单的c程序!急!!!!!spapp源码!
#include <stdio.h>
#include <string.h>
char
*mystrcat (char* dst,mdf源码 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);
}