Users Online
· Guests Online: 31
· Members Online: 0
· Total Members: 188
· Newest Member: meenachowdary055
· Members Online: 0
· Total Members: 188
· Newest Member: meenachowdary055
Forum Threads
Newest Threads
No Threads created
Hottest Threads
No Threads created
Latest Articles
Articles Hierarchy
C++ Program to Count the Number of Lines in Text File
C++ Program to Count the Number of Lines in Text File
This C++ Program which counts the number of lines in a file. The program creates an input file stream, reads a line on every iteration of a while loop, increments the count variable and the count variable is printed on the screen.
Here is source code of the C++ program which counts the number of lines in a file. The C++ program is successfully compiled and run on a Linux system. The program output is also shown below.
-
/*
-
* C++ Program to Count lines in a file
-
*/
-
-
#include<iostream>
-
#include<fstream>
-
using namespace std;
-
-
int main()
-
{
-
int count = 0;
-
string line;
-
-
/* Creating input filestream */
-
ifstream file("main.cpp");
-
while (getline(file, line))
-
count++;
-
-
cout << "Numbers of lines in the file : " << count << endl;
-
return 0;
-
}
$ g++ main.cpp $ ./a.out Numbers of lines in the file : 21
Comments
No Comments have been Posted.
Post Comment
Please Login to Post a Comment.