Tech Study

C Program to Find String Length

Introduction

C program to find string length. 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

C program to find string length
C program to find string length

 

Here are some more c program for your practice :

C program to concatenate two strings

C program to change string to upper case without strupr

TaggedC program to find string length

Java Final keyword

Introduction : java final keyword The final keyword present in Java programming language is generally used for restricting the user. …

Read more

C++ Memory Management: new and delete

C++ Memory Management We know that arrays store contiguous and the same type of memory blocks, so memory is allocated …

Read more