019 全面的MyString

#include <cstdlib> #include <iostream> using namespace std; int strlen(const char * s) { int i = 0; for(; s[i]; ++i); return i; } void strcpy(char * d
posted @ 2022-02-20 22:26  icefield817  阅读(103)  评论(0编辑  收藏  举报