Character is Vowel or Consonant
Write a C++ Program to Check Whether a character is Vowel or Consonant. Here’s simple C++ Program to Check Whether a character is Vowel or Consonant in C++ Programming Language.
Here is source code of the C++ Program to Check Whether a character is Vowel or Consonant. The C++ program is successfully compiled and run(on Codeblocks) on a Windows system. The program output is also shown in below.
SOURCE CODE : :
/* C++ Program to Check Whether a character is Vowel or Consonant */ #include <iostream> using namespace std; int main() { char c; int isLowercaseVowel, isUppercaseVowel; cout << "Enter any character to check :: "; cin >> c; // evaluates to 1 (true) if c is a lowercase vowel isLowercaseVowel = (c == 'a' || c == 'e' || c == 'i' || c == 'o' || c == 'u'); // evaluates to 1 (true) if c is an uppercase vowel isUppercaseVowel = (c == 'A' || c == 'E' || c == 'I' || c == 'O' || c == 'U'); // evaluates to 1 (true) if either isLowercaseVowel or isUppercaseVowel is true if (isLowercaseVowel || isUppercaseVowel) { cout<<"\nThe Entered Character [ "<<c<<" ] is a Vowel.\n"; } else { cout<<"\nThe Entered Character [ "<<c<<" ] is a Consonant.\n"; } return 0; }
Output : :
/* C++ Program to Check Whether a character is Vowel or Consonant */ Enter any character to check :: u The Entered Character [ u ] is a Vowel. Process returned 0
Above is the source code for C++ Program to Check Whether a character is Vowel or Consonant which is successfully compiled and run on Windows System.The Output of the program is shown above .
If you found any error or any queries related to the above program or any questions or reviews , you wanna to ask from us ,you may Contact Us through our contact Page or you can also comment below in the comment section.We will try our best to reach up to you in short interval.
Thanks for reading the post….