标签:style blog color io ar div log har
1 #include <stdio.h> 2 #include <string.h> 3 4 int mylen(char *s) 5 { 6 //数组型 7 // int cnt = 0; 8 // while(s[cnt] != ‘\0‘) { 9 // cnt++; 10 // } 11 12 // return cnt; 13 14 //指针型 15 char *p = s; 16 while(*s != ‘\0‘) { 17 s++; 18 } 19 20 return s - p; 21 } 22 23 int main() 24 { 25 char s[100]; 26 gets(s); 27 printf("\n%d", mylen(s)); 28 29 return 0; 30 }
写自己的函数 strlen-----→mylen,布布扣,bubuko.com
标签:style blog color io ar div log har
原文地址:http://www.cnblogs.com/aexin/p/3884844.html