摘要: strcpy、strncpy、memcpy 的区别 strcpy 描述 将一个字符串复制到另一个字符串中 实现 char *myStrcpy(char* dest, const char* src){ if ((NULL == dest) || (NULL == src)){ return NULL 阅读全文
posted @ 2023-10-23 16:42 王清河 阅读(120) 评论(0) 推荐(0) 编辑