Q:

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

belongs to collection: C++ Basic Solved Programs

0

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.

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

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 .

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

C++ Basic Solved Programs

This question belongs to these collections

Similar questions


need a help?


find thousands of online teachers now
C++ Program to Check whether given number is Even ... >>
<< C++ Program to Find Roots of Quadratic Equation us...