0% found this document useful (0 votes)
34 views1 page

Vowel PDF

Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
34 views1 page

Vowel PDF

Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 1

File: /home/students/vowel.

c Page 1 of 1

//AlphaBet AND Consonants


#include<stdio.h>
int main()
{
char alphabet;
printf("Enter any letter\n");
scanf("%c",&alphabet);

if(alphabet=='a' || alphabet=='e' || alphabet=='i' || alphabet=='o' ||


alphabet=='u' )
{
printf("It is a vowel\n");
}

else
{
printf("It is a consonant\n");
}
return 0;
}

You might also like