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

strlen

时间:2015-06-26 09:10:43      阅读:131      评论:0      收藏:0      [点我收藏+]

标签:

char c1[] = "sdfa";//系统自动添加结束字符 \0

        char c2[] = {‘1‘,‘2‘,‘3‘};//这样赋值的话,要自己加上结束字符 \0

        printf("%s\t %s\n",c1,c2);

        printf("%lu\t %lu\n",strlen(c1),sizeof(c2));//strlen获得字符串长度,不包括\0

strlen

标签:

原文地址:http://www.cnblogs.com/tanglimei/p/4601465.html

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