摘要: strcpy 和 memcpy 的区别 源码实例: #include<cstdio> #include<cstring> #include<cassert> char *myStrcpy(char* dest, const char* src){ if ((NULL == dest) || (NUL 阅读全文
posted @ 2021-04-14 23:08 王清河 阅读(111) 评论(0) 推荐(0) 编辑