C++ Program to Count Words Lines and Total Size using File Handling

By | 05.01.2017

Count Words Lines and Total Size


Write a C++ Program to Count Words Lines and Total Size using File Handling. Here’s simple Program to Count Words Lines and Total Size using File Handling in C++ Programming Language.


Below is the source code for C++ Program to Count Words Lines and Total Size using File Handling which is successfully compiled and run on Windows System to produce desired output as shown below :


SOURCE CODE : :


/*  C++ Program to Count Words Lines and Total Size using File Handling  */

 /*---------------File4.txt Content------------------------

// Write a C++ Program to Count Words
// Lines and Total Size using File
// Handling. Here’s simple Program to
// Count Words Lines and Total Size using
// File Handling in C++ Programming Language.

//--------------------------------------------------------*/



#include<iostream>
#include<fstream>
using namespace std;

int main()
{
     cout<<"\nText File 1 is opened........\n";
     ifstream fin("C:\\Users\\acer\\Documents\\file4.txt"); //opening text file

     int line=1,word=1,size; //will not count first word and last line so initial value is 1
     char ch;


     fin.seekg(0,ios::end); //bring file pointer position to end of file
     size=fin.tellg(); //count number of bytes till current postion for file pointer

     fin.seekg(0,ios::beg); //bring position of file pointer to begining of file

     while(fin)
     {
      fin.get(ch);
      if(ch==' '||ch=='\n')
       word++;

      if(ch=='\n')
       line++;
     }

     cout<<"\nNo. of Lines = "<<line<<"\n\nNo. of Words = "<<word;
     cout<<"\n\nSize of Text File="<<size<<"\n";
     fin.close(); //closing file

     return 0;

}

OUTPUT : :


/*  C++ Program to Count Words Lines and Total Size using File Handling  */

/*---------------File4.txt Content------------------------

// Write a C++ Program to Count Words
// Lines and Total Size using File
// Handling. Here’s simple Program to
// Count Words Lines and Total Size using
// File Handling in C++ Programming Language.

//--------------------------------------------------------*/

**************************OUTPUT*********************************


Text File 1 is opened........

No. of Lines = 5

No. of Words = 32

Size of Text File=188

Process returned 0

Above is the source code for C++ Program to Count Words Lines and Total Size using File Handling which is successfully compiled and run on Windows System.The Output of the program is shown above .

If you found any error or any queries related to the above program or any questions or reviews , you wanna to ask from us ,you may Contact Us through our contact Page or you can also comment below in the comment section.We will try our best to reach up to you in short interval.


Thanks for reading the post….

2.5 2 votes
Article Rating
Subscribe
Notify of
guest

0 Comments
Inline Feedbacks
View all comments