Computer Science, asked by EshithaVimalan, 7 months ago

Write a C++ program to input any alphabet and check whether it is vowel or consonant.
 

Answers

Answered by yashish11
1

Answer:

Enter an alphabet: u u is a vowel. The character entered by the user is stored in variable c . The isLowerCaseVowel evaluates to true if c is a lowercase vowel and false for any other character. Similarly, isUpperCaseVowel evaluates to true if c is an uppercase vowel and false for any other character.

Explanation:

thankyou for the question BE HAPPY #BE HAPPY

Similar questions