C program to find length of a string

C program to find length of a string

#include<stdio.h>
#include<conio.h>

void main()
{
int i;
char str[50];
clrscr();
printf(“Enter a string:”);
gets(str);

for(i=0;str[i]!=’’;++i);
printf(“Lenth of string is %d”,i);
getch();
}

Leave a Comment

Your email address will not be published. Required fields are marked *