*** 自写代码:复制字符串

#include using namespace std; char * strcpy1 (char * strDest, char * strSrc) { if ((strDest==NULL) || (strSrc==NULL)) { return NULL; } char * strDeskCpy = strDest; while ...
posted @ 2018-12-23 19:11  super行者  阅读(203)  评论(0编辑  收藏  举报