This is default featured slide 1 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.

C Program to calculate frequency of vowels in a string

/**********************************************************************  C Program to calculate frequency of vowels in a string  **********************************************************************/ #include <stdio.h> #include <conio.h> void main() {   int a=0,e=0,i=0,o=0,u=0,sum=0;   char c;   printf("Enter string:-  ");   printf("\nString will be terminated if you press Ctrl-Z & then ENTER.");   printf("\nSTRING:-  ");   while ((c=getchar())!=EOF)    ...