C语言字符串函数----strlen函数用法

字符串函数-----strlen函数

strlen()函数

  • strlen函数用来统计字符串的长度.
    遇到’/0’停止,但是不包括’/0’.

-其函数原型为 unsigned int strlen (char *s);

#include 
#include 
main()
{
char str1[5]="aaaa";//不能有5个a,必须留一个位置放置'/0'
char *str2 = "aaa";

printf("%d ",strlen(str1));
printf("%d\n",strlen(str2));
} 
//结果为 4 3
  • 自定义函数实现strlen函数
int len(char *str)
{
 int i = 0;
    while(str[i]!='\0')
     i++;
    return i;
}

具体详细内容可以看C Primer Plus  702页B.5.22

2019/12/26 18/00

你可能感兴趣的:(C语言,字符串,c语言)