C++ Program to Count no. of alphabets, digits and spaces present in a file STORY.TXT

Program

#include<fstream.h>
#include<conio.h>

void main()
{
clrscr();
ifstream  fin(“STORY.TXT”);
char ch;
int i,a=0,s=0,d=0;

while(fin)
{
fin.get(ch);
i=ch;
if(i>63&&i<91||i>96&&i<123)
a++;
else
if(ch==’ ‘)
s++;
else
if(i>47&&i<58)
d++;
}
cout<<“No. OF Alphabates:”<<a;
cout<<“nNo. Of Digits:”<<d;
cout<<“nNo. Of Spaces:”<<s;
getch();
}

Output

C++ Program to Count no. of alphabets, digits and spaces present in a file STORY.TXT

Leave a Comment

error: Alert: Content is protected!!