📜  C程序查找字符串的长度

📅  最后修改于: 2021-05-25 19:08:00             🧑  作者: Mango

给定一个字符串str 。任务是找到字符串的长度。

例子

Input: str = "Geeks"
Output: Length of Str is : 4

Input: str = "GeeksforGeeks"
Output: Length of Str is : 13

在下面的程序中,要找到字符串str的长度,首先使用scanf in将字符串作为用户的输入Str ,然后使用loop并使用strlen()方法 。

下面是C程序,用于查找字符串的长度。

示例1:使用循环计算字符串的长度。

// C program to find the length of string
#include 
#include 
  
int main()
{
    char Str[1000];
    int i;
  
    printf("Enter the String: ");
    scanf("%s", Str);
  
    for (i = 0; Str[i] != '\0'; ++i);
  
    printf("Length of Str is %d", i);
  
    return 0;
}
输出:
Enter the String: Geeks
Length of Str is 5

示例2:使用strlen()查找字符串的长度。

// C program to find the length of 
// string using strlen function
#include 
#include 
  
int main()
{
    char Str[1000];
    int i;
  
    printf("Enter the String: ");
    scanf("%s", Str);
  
    printf("Length of Str is %ld", strlen(Str));
  
    return 0;
}
输出:
Enter the String: Geeks
Length of Str is 5

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