Number Of Occurrences Of Vowels, Consonants, Words, Spaces And
Special Characters In The Given Statement.
#include<stdio.h>
#include<conio.h>
#include<stdlib.h>
#include<string.h>
#include<ctype.h>
void main()
{
char s[100];
int vow=0,cons=0,spc=0,punc=0,l,i;
clrscr();
printf(enter the statement\n);
gets(s);
l=strlen(s);
for(i=0;i