Write C++ to Check Whether a character is Vowel or Consonant

Check Whether a character is Vowel or Consonant

Download C++ Compiler here : C++ Compiler
You can get code of this C++ here ; DOWNLOAD C++ code
Alphabets a, e, i, o and u are vowels and all alphabets except these letters are consonants.
This program below takes character input from user and checks whether that letter is vowel alphabet or not using if...else statement

#include <iostream>
using namespace std;

int main() {
    char c;
    cout << "Enter an alphabet: ";
    cin >> c;
    if(c=='a'||c=='A'||c=='e'||c=='E'||c=='i'||c=='I'||c=='o'||c=='O'||c=='u'||c=='U') {
        cout << c << " is a vowel.";
    }
    else {
        cout << c << " is not a vowel.";
    }
    
    return 0;
}
The Output
Enter an alphabet: o
o is a vowel.
Previous Post Next Post