自己实现库函数strcpy(),strlen()。
1、strcpy().用来拷贝字符串,将第二个字符串拷贝到第一个字符串里面。1.1 函数原型。const char * strcpy(char* dest, const char* src);1.2 自定义实现。const char * _myStrcpy(char* dest, const char* src){ assert((dest != NULL) && (...