google.com, pub-6167773875660516, DIRECT, f08c47fec0942fa0 Write a c program to find the length of a string - 2nd puc computer science

Write a c program to find the length of a string

write a c program to find the length of a string,write a c program to find the length of given string,write a c program to find the length of a given string

Write a c program to find the length of a string

#include<stdio.h>

#include<conio.h>

#include<string.h>

void main()

{

char s[20];

int l;

clrscr();

printf("Enter the string: ");

gets(s);

l=strlen(s);

printf("The length of the string is %d",l);

getch();

}

Output:

Enter the string: Hanumanth Ladwa

The length of the string is 15 
Write a c program to find the length of a string Write a c program to find the length of a string Reviewed by Vision Academy on December 12, 2021 Rating: 5

No comments:

CheckOut

Powered by Blogger.