Question:Â
Write a program that prompts the user to enter a value and display the Vowel or consonant character like output sample.
 Output Sample:  Â
Input | Output |
3 | |
g T U | Consonant! Consonant! Vowel! |
 Source Code: Â
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 |
#include<stdio.h> #include <ctype.h> int main() { int input, line; char ch; int lowerCaseVowel, upperCaseVowel; scanf("%d", &input); for(line=1; line<=input; line++) { do{ scanf("%c", &ch); }while (!isalpha(ch)); lowerCaseVowel = (ch=='a' || ch=='e' || ch=='i' || ch=='o' || ch=='u'); upperCaseVowel = (ch=='A'|| ch=='E' || ch=='I' || ch=='O' || ch=='U'); if(lowerCaseVowel || upperCaseVowel) printf("Vowel!\n"); else printf("Consonant!\n"); } return 0; } |
 List of C Exercises:Â
- Sum of two integer numbers
- Arithmatic calculation
- Average calculation
- Square root of a number
- Celsius to Fahrenheit convert
- Centimter to feet convert
- Square, Cube solution
- Reverse your number
- Find out bigger number
- Find Factorial of a Number
- Integer Number count
- !1+!2+!3+!4+!5…..!n Factorial sum
- Positive or Negative number
- Generate Multiplication Table
- Even or Odd number
- Calculate Power of a Number
- Grading Marks using Switch Case
- Basic Calculator using if-else
- Basic Calculator using Switch Case
- Count your day using switch case
- Leap year counting
- Print Half pyramid using star
- Print half pyramid using numbers
- Print Inverted Half pyramid using star
- Print Inverted Half pyramid using numbers
- Print full pyramid using star
- Print Inverted full pyramid using star
- Print Floyd’s Triangle pyramid
- Print hollow square star pattern
- Print rhombus star pattern
- Print hollow pyramid using star
- Check Vowel or consonant character
- Uppercase and Lowercase English Alphabets prints
- Check Palindrome number
- Fibonacci Sequence display