

- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
C program to find the length of a string?
The string is actually a one-dimensional array of characters which is terminated by a null character '\0'. Thus a null-terminated string contains the characters that comprise the string followed by a null.
To find the length of a string we need to loop and count all words in the loop until the ‘\0’ character is matched.
For example
Input −naman
Output − string length is 5
Explanation − we need to iterate over each index of the string until reach the end of string means ‘\0’ which is the null character.
Example
#include <stdio.h> #include<string.h> int main() { char string1[]={"naman"}; int i=0, length; while(string1[i] !='\0') { i++; } length=i; printf(" string length is %d",length); return 0; }
Output
string length is 5
- Related Questions & Answers
- C++ Program to Find the Length of a String
- C program to find the length of linked list
- 5 Different methods to find the length of a string in C++?
- PHP program to find the length of the last word in the string
- C++ program for length of a string using recursion
- 5 Different methods to find length of a string in C++?
- Program to find length of longest repeating substring in a string in Python
- Program to find length of concatenated string of unique characters in Python?
- Write a program in Python to find the maximum length of a string in a given Series
- Python - Find the length of the last word in a string
- C++ Program to Find the Number of Permutations of a Given String
- Program to find Length of Bridge using Speed and Length of Train in C++
- C# program to find the index of a word in a string
- C++ Program to Find the Frequency of a Character in a String
- Python Program to Find the Length of a List Using Recursion
Advertisements