📜  c中的strlen()函数

📅  最后修改于: 2021-05-26 01:30:03             🧑  作者: Mango

strlen()函数计算给定字符串的长度。strlen()函数在字符串.h头文件中定义。它不计算空字符“ \ 0”。

句法:

int strlen(const char *str);

范围:

  • str:它代表我们必须找到其长度的字符串变量。

返回值:该函数返回传递的字符串的长度。

下面的程序说明了C语言中的strlen()函数:

范例1:-

// c program to demonstrate
// example of strlen() function.
  
#include
#include 
  
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
#include 
  
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
#include 
  
int main()
{
   char *str = "geeks";
  
   printf("Length of string is: %d", strlen(str));
  
 return 0;
}

输出 :

Length of string is: 5
想要从精选的最佳视频中学习和练习问题,请查看《基础知识到高级C的C基础课程》。