You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
//Program to calculate count of vowels & consonants in string
#include<stdio.h>
#include<string.h>
#include<ctype.h>
int main()
{
int i, vowels= 0, consonant = 0;
char str[] = "A compiler is a special program that processes statements written in a particular programming language and turns them into machine language or code that a computer's processor uses.";