int strlen(char *s) { int i=0; while(*s!=‘\0‘) { i++; s++; } return i; } void main() { char str[100]; int len; printf("please input your string:"); gets(str); len=strlen(str); printf("the length of str is:%d\n",len); }
版权声明:本文为博主原创文章,未经博主允许不得转载。
时间: 2024-10-03 05:25:37