【自己构造一个函数,求解字符串长度】 #include<string.h>#include<stdio.h>intmy_strlen(char*str)//自己构造一个函数,求解字符串长度{int count=0;//使用临时变量countwhile(*str!='\0')//因为arr[]内部实际为“b i t \0”四个地址{count++;str++;}returncount;}intmain(){char arr[]="bit";in...
【自己构造一个函数,求解字符串长度】 #include <string.h> #include <stdio.h> int my_strlen(char* str)//自己构造一个函数,求解字符串长度 { int count = 0;//使用临时变量count while (*str != '\0')//因为arr[]内部实际为“b i t \0”四个地址 { count++; str++; } return count; } ...