
C Program to count number of Vowels and Consonants of a string
Published January 4, 2023
Views 12.5K | Likes 316 | Comments 6
At a glance
Views
12,572
Likes
316
Comments
6
Performance vs. channel
Outlier score
Engagement rate
More features coming
We're working on new analytics and tools. Stay tuned.
About
#include"stdio.h" #include"conio.h" void main() { char s[20]; int i,count=0; clrscr(); printf("\nEnter a string: "); scanf("%s",s); for(i=0;s[i];i++) { switch(s[i]) { case 'a': case 'A': case 'e': case 'E': case 'i': case 'I': case 'o': case 'O': …
- Published
- January 4, 2023
- Made for kids
- No
More features coming
We're working on new analytics and tools. Stay tuned.