Q:

C program to find string length

belongs to collection: C language string programs

0

C program to find string length

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

Solution:

I have used Code:: Blocks compiler for debugging purpose. But you can use any C programming language compiler as per your availability.

#include <stdio.h>
#include <string.h>

int main()
{
   char str[100];
   int length;

   printf("Enter a string to calculate it's length\n");
   gets(str);

   length = strlen(str); // strlen to find string lenth

   printf("Length of entered string is : %d\n",length);

   return 0;
}

Result:

Enter a string to calculate it's length

TECHSTUDY

Length of entered string is : 9

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

C program to convert a string to upper case... >>
<< C program to convert a string to lower case...