Ta上传的资源 (0)

string.h函数的实现 char *strcpy_1(char *dst,const char *src)   {    while(*dst++=*src++);    return dst;    //notice: wrong return!!!!   } //this is a faul
C 18