C++ Program to Count Number of vowels in String

Advertisements

Copy String into Another in C++ Short Array Element in C++

Find Number of Vowels, Consonants, Digits, Spaces in a String

C++ Program to Find Number of vowels in string

#include<stdio.h>
#include<iostream.h>
#include<conio.h>

int main()
{
    char line[150];
    int i,v,c,ch,d,s,o;
    o=v=c=ch=d=s=0;
    clrscr();
    cout<<"Enter a line of string:\n";
    gets(line);
    for(i=0;line[i]!='\0';++i)
    {
        if(line[i]=='a' || line[i]=='e' || line[i]=='i' || line[i]=='o' || line[i]=='u' || line[i]=='A' || line[i]=='E' || line[i]=='I' || line[i]=='O' || line[i]=='U')
            ++v;
        else if((line[i]>='a'&& line[i]<='z') || (line[i]>='A'&& line[i]<='Z'))
            ++c;
        else if(line[i]>='0'&& line[i]<='9')
            ++d;
        else if (line[i]==' ')
            ++s;
    }
    cout<<"Vowels: "<<v;
    cout<<"\nConsonants: "<<c;
    cout<<"\nDigits: "<<d;
    cout<<"\nWhite spaces: "<<s;
    getch();
}

Output

Enter a line of string: This is 5 C program
vowels: 4
Consonants: 9
Digits: 1
White spaces: 4

Copy String into Another in C++ Short Array Element in C++

Advertisements




For Projects 9999595223

Google Advertisements


Buy Websites 9999595223

Buy College Projects with Documentation Contact on whatsapp 9999595223. Contact on: hitesh.xc@gmail.com or 9999595223 Try this Keyword C++ Programs

Advertisements