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

Python Examples

Introduction: Python Examples are the basic programming concepts of python like python syntax,python data types,,python operators,python if else,python comments etc.. …

Read more

C String Functions

C String Functions perform certain operations, It provides many useful string functions which can come into action. The <string.h> header …

Read more