Check Vowel or Consonant Character C Programming
“Check Vowel or Consonant Character” is a C program to input a character and check whether it is vowel or consonant. This C program uses nested if else statement for condition checking. /* Write a C program to check whether a character is vowel or consonant alphabet */ #include<stdio.h> int main() { char ch; /*… Read More »