#include<stdio.h>
#include<conio.h>
int main (void)
{
char s[100];
int i,c=0;
clrscr();
printf("\n Enter a string");
scanf("%s",s);
for(i=0;s[i]!='\0';i++)
{
if(s[i]=='a'||s[i]=='A'||s[i]=='e'||s[i]=='E'||s[i]=='i'||s[i]=='I'||s[i]=='o'||s[i]=='O'||s[i]=='u'||s[i]=='U')
c++;
}
printf("\n the nos. of vowels in the given string is=%d",c);
getch();
return 0;
}