C program to count number of vowels in a string

[c]
#include
#include
#include
void main()
{
char sk[10];
int count=0,i;
clrscr();
printf(“Enter a String :”);
gets(sk);
for(i=0;iOutput:

C program to count number of vowels in a string