strlen()函数计算给定字符串的长度。strlen()函数在string.h头文件中定义。它不计算空字符“ \ 0”。
用法:
int strlen(const char *str);
参数:
- str:它代表我们必须找到其长度的字符串变量。
返回:此函数返回传递的字符串的长度。
以下示例程序旨在说明C语言中的strlen()函数:
示例1:
// c program to demonstrate
// example of strlen() function.
#include<stdio.h>
#include <string.h>
int main()
{
char ch[]={'g', 'e', 'e', 'k', 's', '\0'};
printf("Length of string is:%d", strlen(ch));
return 0;
}
输出:
Length of string is:5
示例2:
// c program to demonstrate
// example of strlen() function.
#include<stdio.h>
#include <string.h>
int main()
{
char str[]= "geeks";
printf("Length of string is:%d", strlen(str));
return 0;
}
输出:
Length of string is:5
示例3:
// c program to demonstrate
// example of strlen() function.
#include<stdio.h>
#include <string.h>
int main()
{
char *str = "geeks";
printf("Length of string is:%d", strlen(str));
return 0;
}
输出:
Length of string is:5
相关用法
- C语言 tolower()用法及代码示例
- C语言 strlwr()用法及代码示例
- C语言 putchar()用法及代码示例
- C++ wcstoll()用法及代码示例
- C++ ldexp()用法及代码示例
- C++ iswblank()用法及代码示例
- C++ iswalnum()用法及代码示例
- C++ raise()用法及代码示例
- C++ feupdateenv()用法及代码示例
- C++ exp2()用法及代码示例
- C++ gmtime()用法及代码示例
注:本文由纯净天空筛选整理自bansal_rtk_大神的英文原创作品 strlen() function in c。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。