/* ###########################
Girfa : Student Help
for more program visit
:http://girfahelp.blogspot.in/p/c-language.html
Count no. of vowel seprately
############################
*/
#include<stdio.h>
#include<conio.h>
void
main()
{
char ch[200];
int a,e,i,o,u,index;
a=i=o=u=e=0;
clrscr();
printf("Enter your
string>> ");
gets(ch);
for(index=0;ch[index]!='\0';index++)
{
switch(ch[index])
{
case 'a' :
a++;
break;
case 'A' :