C++ Program to Check Vowel or Consonant using Switch Case

How to Check Vowel or Consonant using Switch Case

Here you will get the source code of  C++ Program to Check Vowel or Consonant using Switch Case.

The letters A, E, I, O, U are called vowels and all other letters in the alphabets are called Consonants.

C++ Program to Check Vowel or Consonant using Switch Case

Output 1

Enter an Alphabet to check vowel or consonant : u
u is a Vowel

Output 2

Enter an Alphabet to check vowel or consonant : R
R is a Consonant

 

 

Check out our other C++ programming Examples

 

 

 

Leave a Comment

Your email address will not be published. Required fields are marked *

Scroll to Top