Find String Length using Predefined Function in C


This program is used to find the length of a given string. It uses the strlen function from the string.h library to determine the length of the string. The program takes the input string from the user and stores it in the character array a. Then, it calls the strlen function and passes the a array as an argument. The function returns the length of the string and the program prints it on the screen.

Source Code

#include<stdio.h>
#include<string.h>
int main()
{
   int len;
   char a[100];
   printf("\nEnter the String:");
   gets(a);
   len=strlen(a);
   printf("\nstring length:%d",len);
   return 0;
}
To download raw file Click Here

Output

Enter the  String:Tutor Joe's
string length:11

List of Programs


Sample Programs


Switch Case in C


Conditional Operators in C


Goto Statement in C


While Loop Example Programs


Looping Statements in C

For Loop Example Programs


Array Examples in C

One Dimensional Array


Two Dimensional Array in C


String Example Programs in C


Functions Example Programs in C