不调用C/C++库函数,编写strcpy()函数。
char * my_strcpy(char *strDest,const char *strSrc) { char *p=strDest; while(*strSrc) { *strDest++=*strSrc++; } *strDest='