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.
#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
Enter the String:Tutor Joe's string length:11
Learn All in Tamil © Designed & Developed By Tutor Joes | Privacy Policy | Terms & Conditions