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

strlen()函数:返回字符串的长度

时间:2019-07-06 11:46:37      阅读:81      评论:0      收藏:0      [点我收藏+]

标签:字符数组   长度   har   string   遇到   数组   sign   区域   abc   

头文件:#include <string.h>

strlen()函数用来计算字符串的长度,其原型为:unsigned int strlen (char *s);  s为指定的字符串

如果字符格式等于字符数组的大小,那么strlen()的返回值就无法确定了。

例如:

  char str[6] = "abcxyz";

  strlen(str);

返回值将是不确定的,因为str的结尾不是0,strlen()会继续向后检索,直到遇到‘\0‘,而这些区域内容是不确定的。

strlen()函数:返回字符串的长度

标签:字符数组   长度   har   string   遇到   数组   sign   区域   abc   

原文地址:https://www.cnblogs.com/Frances-CY-FKYM/p/11142144.html

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