编写程序实现strlen()函数,strcmp(),strcpy(),strcat()的功能 1.strlen()函数的实现(求字符串长度的函数)#include<stdio.h>#include<assert.h>intmy_strlen(constchar*str){intcount=0;assert(str!=NULL);while(*str){count++;... c/c++ 2024-10-20 33 点赞 0 评论 50 浏览