belongs to collection: C Programming language Basic programs with examples
C program to find string length
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
total answers (1)
start bookmarking useful questions and collections and save it into your own study-lists, login now to start creating your own collections.
Solution:
I have used Code:: Blocks compiler for debugging purpose. But you can use any C programming language compiler as per your availability.
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