In this program we will count the number of vowels, consonants, digits or blank space present in a sentence given by user as input.
Program related to string:
Problem Statement:
C program to count the number of vowels, consonants, spaces and digits in a sentence.
Logic :
- The program took a string sentence from the user.
- At first, the variables vowels, consonants, number and spaces are initialized to 0.
- Within a for loop we check for vowels, consonants, number and spaces and when found we increment the corresponding variable by 1.
- At last, we are printing the corresponding count on the screen.
Source Code:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 | #include |
Output:
More topics on C programs:
- C program to store information of n student using structure
- C program to find the Armstrong Number between intervals
- C program to check whether a certain number is Armstrong or not
- C Program to Check Whether a Number is Palindrome or Not
- C Program to display the Fibonacci Series up-to n number of terms
- C Program to display the Fibonacci Series up-to a certain number
- C program to find the factorial of a number
- C Program to Find Prime Numbers Between Intervals Using Functions.
- C program: perfect or not checking
- C program to identify a number as even or odd
- C Program to print Hello World
No comments:
Post a Comment