#include<iostream>
#include<cstring>
using namespace std;
char word[20];
char a[1]={a};
char e[1]={e};
char i[1]={i};
char o[1]={o};
char u[1]={u};
int x,y,z;
int main()
{
cout<<"Enter a Word: "<<endl;
cin>>word;
y=strlen(word);
for(z=0;z<y;z++)
{
if (word[z]==a[0])
{
x++;
}
if (word[z]==e[0])
{
x++;
}
if (word[z]==i[0])
{
x++;
}
if (word[z]==o[0])
{
x++;
}
if (word[z]==u[0])
{
x++;
}
else
{
cout<<"No Vowels Found";
}
}
return 0;
}
//pls help me on this.. thanks