摘要: #include <iostream> #include <cstring> #include <cstdlib> char *mystrcat(char *dst,const char *src) //用自己的方式实现strcat函数功能 { char *p=dst; //下面的操作会改变目的指针 阅读全文
posted @ 2020-07-26 08:06 洪豆豆的记录 阅读(117) 评论(0) 推荐(0) 编辑