Count Vowel and Consonant in C program
#include <stdio.h> main() { char text[80]; int i, vowels = 0, consonants = 0, special = 0; printf("Enter a text \n"); gets(text); for (i = 0; text[i] != ‘\0’; i++) …
Count Vowel and Consonant in C program Read More