Check If Input Character Is A Vowel Using Switch Case
The below program is check the entered character, if it is vowel then it will print the entered character is vowel, otherwise it will print that the entered character is not vowel. #include<stdio.h> #include<conio.h> void main() { char ch; clrscr(); printf(“Enter A Character : “);… Read More »Check If Input Character Is A Vowel Using Switch Case