#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
#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