बिजनेस मार्केटिंग का लो कॉस्ट फंडा , अपने मोबाइल से ऑटो sms भेजकर मार्केटिंग करे विजिट करे http://autotextsms.com/ बिजनेस मार्केटिंग का लो कॉस्ट फंडा http://autotextsms.com/

Search This Blog

Translate

c program to check vowels and consonant in a given string using switch case


 c program  to check vowels and consonant in a given string using switch case
#include
#include
void main()
{
  char ch;
  clrscr();
  printf("\n Enter the lower case alphabet to find vowels & consonant:");
  scanf("%c",&ch);
  switch(ch)
  {
   case 'a':
   case 'e':
   case 'i':
   case 'o':
   case 'u':printf("\n Vowel");  break;
   default :printf("\n Consonent");
  }
}

C Program example List