码迷,mamicode.com
首页 > 编程语言 > 详细

C语言strlen()函数用法

时间:2017-01-12 20:56:19      阅读:231      评论:0      收藏:0      [点我收藏+]

标签:头文件   int   语言   pre   printf   strong   stdio.h   return   dia   

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

头文件:#include <string.h>

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

eg:

#include<stdio.h>
#include<string.h>
int main()
{
    char *str1 = "http://see.xidian.edu.cn/cpp/u/shipin/";
    char str2[100] = "http://see.xidian.edu.cn/cpp/u/shipin_liming/";
    char str3[5] = "12345";
    printf("strlen(str1)=%d, sizeof(str1)=%d\n", strlen(str1), sizeof(str1));
    printf("strlen(str2)=%d, sizeof(str2)=%d\n", strlen(str2), sizeof(str2));
    printf("strlen(str3)=%d, sizeof(str3)=%d\n", strlen(str3), sizeof(str3));
    return 0;
}
运行结果:
strlen(str1)=38, sizeof(str1)=4
strlen(str1)=45, sizeof(str1)=100
strlen(str1)=53, sizeof(str1)=5

如果字符的个数等于字符数组的大小,那么strlen()的返回值就无法确定了,例如
    char str[6] = "abcxyz";
strlen(str)的返回值将是不确定的。因为str的结尾不是0,strlen()会继续向后检索,直到遇到‘\0‘,而这些区域的内容是不确定的。

C语言strlen()函数用法

标签:头文件   int   语言   pre   printf   strong   stdio.h   return   dia   

原文地址:http://www.cnblogs.com/xiaodingmu/p/6279723.html

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