码迷,mamicode.com
首页 > 其他好文 > 详细

写自己的函数 strlen-----→mylen

时间:2014-08-01 15:22:11      阅读:190      评论:0      收藏:0      [点我收藏+]

标签: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

写自己的函数 strlen-----→mylen

标签:style   blog   color   io   ar   div   log   har   

原文地址:http://www.cnblogs.com/aexin/p/3884844.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!