vowel or consonant in c

Solutions on MaxInterview for vowel or consonant in c by the best coders in the world

showing results for - "vowel or consonant in c"
Erica
24 Nov 2018
1// vowel or consonant check program
2#include <stdio.h>
3int main()
4{
5    char ch;
6    ch = getchar();
7    if (ch == 'a' || ch == 'e' || ch == 'i' || ch == 'o' || ch == 'u')
8    {
9        printf("%c is Vowel\n", ch);
10    }
11    else
12    {
13        printf("%c is consonant\n", ch);
14    }
15    return 0;
16}
queries leading to this page
vowel or consonant in cc program to check vowel or consonantc program to check vowel or consonant using switch vowels and consonants in cis vowels case cvowels cboth vowel or consonant alphabets in cc program to check alphabet is vowel or notvowel consonant in cvowel cc program to check whether a character is a vowel or consonantc program to check whether a character is an alphabet and whether it is vowel or consonant using if elsevowel letters in cvowel program in cc program to check whether an alphabet is vowel or consonant using if elsecheck whether a character is vowel or consonant in cc program to check whether an alphabet is vowel or consonant using switch case right like 1check character is vowel or not in cchecking a char vowel in cmake a program to check if th ealphabet is a vowel or a consonant in cc vowelscheck vowel or concsonant c programwrite a c code to check if an alphabet is vowel or consonant using if else ladder vowel consonant program in cc program to check whether an alphabet is vowel or consonant using switch casevowels in cc program to check whether a character is a vowel or consonant algorithm write a program on c that takes a character is vowel or consonantif vowel in cvowels and consonants in chow to know a character is vowel in cwrite a c program to print all vowel and consonant characters separatelyvowel or consonant cc program to check whether a character is vowel or consonant using switch finding a vowel in cc program to check a character is a vowel or consonant vowel or consonant in c