In this program, we are going to share a C program to find the length of the linked list. If you are a beginner and want to start learning the C programming, then keep your close attention in this tutorial as I am going to share a C program to find the length of the linked list with the output.
We have designed this program for beginners for learning purpose. Copy below c program and execute it with c compiler to see the output of the program.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 | #include <stdio.h> int length(char [], int); int main() { char word[20]; int count; printf("Enter a word to count it's length: "); scanf("%s", word); count = length(word, 0); printf("The number of characters in %s are %d.\n", word, count); return 0; } int length(char word[], int index) { if (word[index] == '\0') { return 0; } return (1 + length(word, index + 1)); } |
Enter a word to count it’s length: freewebmentor
The number of characters in freewebmentor are 13.
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.