C Program to check the letter is vowel or consonant
C Program to check the letter is vowel or consonant Problem: Write a C program to check the letter is vowel or consonant. Solution: C code to check vowel or consonant using if-else #include <stdio.h> int main(){ char ch; printf(“Input a charactern”); scanf(“%c”, &ch); if ((ch >= ‘a’ && ch <= ‘z’) || (ch >= ‘A’ &&ch […]
Continue Reading