不调用库函数,实现字符串复制函数char * strcpy(char * dst, const char * src) C/C++软件开发求职面试题 必备考点(二)...
直接来源码:#incudechar*strcpy(char*dst,constchar*src){if(dst==NULL||src==NULL)return;char*dstFirst=dst;while((*dst++=*src++)!='\0');returndstFirst;}intgetLen(constchar*str)//计算字符串长度,相当于strlen{intn=0;while(