//这样就可以了
//输出的是不包含'\0'的字符个数
#include
using namespace std;
int main(){
char str[100];
gets(str);
int count = 0;
while(str[count]!='\0'){
count++;
}
cout<return 0;
}
int myStrLen(char *str)
{
char *t = str;
while(*t)t++;
return t - str;
}
用指针的话 这样就可以了