#include <stdio.h>
int main() {
char ch = 'a';
switch(ch) {
case 'a':
case 'A':
case 'e':
case 'E':
case 'i':
case 'I':
case 'o':
case 'O':
case 'u':
case 'U':
printf("%c is vowel\n", ch);
break;
default:
printf("%c is not vowel\n", ch);
}
return 0;
}
/*
run:
a is vowel
*/