This is a simple program written in C programming language to find the length of a string entered by your while execution of this program.
This program will calculate the length of string without using the strlen()
function. It will count the string length by using the for(i = 0; s[i] != '\0'; ++i);
loop.
1 2 3 4 5 6 7 8 9 10 11 12 13 | #include <stdio.h> int main() { char s[1000], i; printf("Enter a string: "); scanf("%s", s); for(i = 0; s[i] != '\0'; ++i); printf("Length of string: %d", i); return 0; } |
Output is:
If you like FreeWebMentor and you would like to contribute, you can write an article and mail your article to [email protected] Your article will appear on the FreeWebMentor main page and help other developers.
Article Tags: c program to find length of string, find length of string in c, find string length in c