Program to count the number of characters in a word Last Updated : 18 Jan, 2024 Comments Improve Suggest changes Like Article Like Report Write a program to count the number of characters in a word. Examples: Input: Word: "programming"Output: 11 Input: Word: "hello"Output: 5 Approach: To solve the problem, follow the below idea: To count the number of characters in a word, maintain a variable to count all the characters. Iterate through each character in the word and increment the counter for every character. Step-by-step algorithm: Initialize a counter variable to 0.Iterate through each character in the word.For each character encountered, increment the counter.After iterating through all characters, the counter will contain the total number of characters in the word.Below is the implementation of the algorithm: C++ #include <iostream> using namespace std; int main() { string word = "programming"; int count = 0; for (int i = 0; i < word.length(); ++i) { ++count; } cout << "Number of characters: " << count << endl; return 0; } C #include <stdio.h> int main() { char word[] = "programming"; int count = 0; for (int i = 0; word[i] != '\0'; ++i) { ++count; } printf("Number of characters: %d\n", count); return 0; } Java public class CharacterCount { public static void main(String[] args) { String word = "programming"; int count = 0; for (int i = 0; i < word.length(); ++i) { ++count; } System.out.println("Number of characters: " + count); } } Python3 word = "programming" count = 0 for char in word: count += 1 print("Number of characters:", count) C# using System; class Program { static void Main() { string word = "programming"; int count = 0; foreach(char c in word) { ++count; } Console.WriteLine("Number of characters: " + count); } } JavaScript let word = "programming"; let count = 0; for (let i = 0; i < word.length; ++i) { ++count; } console.log("Number of characters:", count); OutputNumber of characters: 11 Time Complexity: O(N), where N is the length of the word.Auxiliary Space: O(1) Comment More infoAdvertise with us Next Article Program to count the number of characters in a word S srinam Follow Improve Article Tags : DSA Similar Reads Program to count the number of consonants in a word Write a program to count the number of consonants in a given word. Consonants are the letters of the English alphabet excluding vowels ('a', 'e', 'i', 'o', 'u'). Examples: Input: "programming"Output: 8 Explanation: The eight consonants are: 'p', 'r', 'g', 'r', 'm', 'm', 'n', 'g') Input: "hello"Outpu 5 min read Program to count the number of vowels in a word Write a program to count the number of vowels in a given word. Vowels include 'a', 'e', 'i', 'o', and 'u' (both uppercase and lowercase). The program should output the count of vowels in the word. Examples: Input: "programming"Output: 3Explanation: The word "programming" has three vowels ('o', 'a', 3 min read Program to count the number of words in a sentence Write a program to count the number of words in a given sentence. A word is defined as a sequence of characters separated by spaces. Examples: Input: "The quick brown fox"Output: 4Explanation: The sentence has four words - "The", "quick", "brown", "fox". Input: "The quick brown fox"Output: 4Explanat 3 min read Lex Program to count number of words Lex is a computer program that generates lexical analyzers and was written by Mike Lesk and Eric Schmidt. Lex reads an input stream specifying the lexical analyzer and outputs source code implementing the lexer in the C programming language. Prerequisite: Flex (Fast lexical Analyzer Generator) Examp 1 min read C program to count number of vowels and consonants in a String Given a string and write a C program to count the number of vowels and consonants in this string. Examples: Input: str = "geeks for geeks" Output: Vowels: 5 Consonants: 8 Input: str = "abcdefghijklmnopqrstuvwxyz" Output: Vowels: 5 Consonants: 21Using For LoopsTake the string as inputTake each charac 4 min read Like