w3resource

C Exercises: Check whether an alphabet is a vowel or consonant

C Conditional Statement: Exercise-17 with Solution

Write a C program to check whether an alphabet is a vowel or a consonant.

Visual Presentation:

Check whether an alphabet is a vowel or consonant

Sample Solution:

C Code:

#include <stdio.h>  // Include the standard input/output header file.

void main()  
{  
    char sing_ch;  // Declare a variable to store a single character.

    printf("Input any alphabet : ");  // Prompt user for input.  
    scanf("%c", &sing_ch);  // Read and store the character input.

    if(sing_ch=='a' || sing_ch=='e' || sing_ch=='i' || sing_ch=='o' || sing_ch=='u' || sing_ch=='A' || sing_ch=='E' || sing_ch=='I' || sing_ch=='O' || sing_ch=='U')  
    {  
        printf("The alphabet is a vowel.\n");  // Print message for vowel.
    }  
    else if((sing_ch>='a' && sing_ch<='z') || (sing_ch>='A' && sing_ch<='Z'))  
    {  
        printf("The alphabet is a consonant.\n");  // Print message for consonant.
    }  
    else  
    {  
        printf("The character is not an alphabet.\n");  // Print message for non-alphabet character.
    }   
}
 

Sample Output:

Input any alphabet : K                                                                                        
The alphabet is a consonant. 

Flowchart:

Flowchart: Check whether an alphabet is vowel or consonant

C Programming Code Editor:

Previous: Write a C program to check whether a character is an alphabet, digit or special character.
Next: Write a C program to calculate profit and loss on a transaction.

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.



Follow us on Facebook and Twitter for latest update.