Monday, 10 October 2016

Easy Program to check the character is Vowel or not

#include<stdio.h>
#include<conio.h>
void main()
{
char x;
clrscr();
printf("Enter the character");
scanf("%c",&x);
if (x=='a'||x=='e'||x=='i'||x=='o'||x=='u')

printf("Its a vowel");
else
printf("its not a vowel");
getch();
}

Download From Here

No comments:

Post a Comment