Pages

Saturday, 6 September 2014

Program to Check Whether a character is Vowel or Consonant


// Code is given below

#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.\n\n";
    }
    else
{
        cout << c << " is not a vowel.\n\n";
    }
 
    return 0;

}

No comments:

Post a Comment

thnx for visiting my blog