Count alphabets in a file – Computer Sir Ki Class

Login


Lost your password?

Don't have an account ?
Register (It's FREE) ×
  

Login
[lwa]



Solved Problem #CPP#5026    siteicon   siteicon  

Problem Statement - Count alphabets in a file

Write a program to count alphabets in a given file “NOTES.TXT”. What would be  the output when this file is tested with the NOTES.TXT  file containing the following lines.

This is first line
This is second line
This is third line

Solution

TC++ #5026

 

Run Output

No. of alphabets in given file = 46

#include <fstream.h> //This include file is required to support ifstream class
#include <ctype.h>          //This include is required to use isalpha() function

ifstream ipfile(“NOTES.TXT”,ios::in);
Opening file NOTES.TXT in input. For proper functioning this file must be created in advance.

int c=0; //This will store the count of alphabet.

if(!ipfile)  {cout<<“Unable to open file”<<endl;return 1;}

To ensure that input file is present this code must be added, else the program can go haywire.

while(!ipfile.eof()) { //This loop runs till the input file reaches the end
char ch=ipfile.get(); //Character is read using the .get function of ifstream object
if(isalpha(ch)) c++;  //The counter is incremented only when the character read is an upper or lower case alphabet

cout<<“No. of alphabets in given file = “<<c<<endl;
The count is alphabet is printed outside the loop.

Notes

  • This code can be tested on your local system only once a file with given content is created with its name as NOTES.TXT
  • It is always a good practice to check if the file has been opened properly. It will not open properly in many cases. One can reach the OS by returning an error to the operating system.
  • For DOS testing with TurboC environment, learners are advised to keep the input file in the BIN directory are the turboc program runs from there.


Share

CSKC| Created: 24-Nov-2018 | Updated: 24-Nov-2018|






×
Introductory Sessions Beginning to Program Tokens Keyword and Identifiers Data Types Variables and Constants Operators Simple User Input Building Expressions and Formulas Simple Real World Problems Simple If and If Else Multiple-Nested-Ladder of If Else Switch case selection Simple Loops Tricks in Loops - break continue scope Loop Applications - Handling numerals Series printing loops Nested Loops Pattern printing loops Number Varieties and Crunches String Handling (Null Terminated) Strings - string class type Functions (Built-in) Functions - user defined Functions Reference Passing/Returning Arrays Concepts and 1-D Arrays Array Data Management Two dimensional arrays and Matrices Structures Basics Structures passing/returning 2D Array Memory Addressing Display Using IO Manipulation Display Using C Formatting Tricks User Defined Data Types Enumerated Types Preprocessor Directives And Macros Exception Handling Programming Paradigms and OOPs Advantages Abstraction and Encapsulation Polymorphism Inheritance Function Overloading Concepts Function Overloading Varieties Function Overloading Special Cases Defining Classes Creating and Using Class Objects Class Members Accessibility Class Function Types Inline Functions Constant Functions Nesting of Functions Class Members Scope Resolution Static Members in a Class Array of Objects Constructor Concepts Default Constructor Parameterized Constructor Copy Constructor Constructor Overloading Destructors Inheritance Fundamentals Public Derivations Private and Protected Derivations Multiple Inheritance Multi-Level Inheritance Class Nesting Data File Concepts Handling Text Files Handling Binary Files Pointer Concepts Pointer and Arrays Pointers and Functions Object Pointers This Pointer Linked Lists Stacks Queues


Back