C
Program to check whether the input alphabet is a vowel or not
Write a C program to check whether the input alphabet is a vowel or not. #include int main() { char ch; printf(“Enter a character\n”); scanf(“%c”, &ch); switch (ch) { case ‘a’; case ‘A’; case ‘e’; ...