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.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | #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; } |
28 February 2019 1582 Written By: Rohit Mhatre
© 2020 Tech Study. All rights reserved | Developed by Tech Study| Privacy Policy | Sitemap