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
Sanfoundry Global Education & Learning Series – 1000 C++ Programs.
Sanfoundry Certification Contest of the Month is Live. 100+ Subjects. Participate Now!
advertisement
advertisement
If you wish to look at all C++ Programming examples, go to C++ Programs.
Next Steps:
- Get Free Certificate of Merit in C++ Programming
- Participate in C++ Programming Certification Contest
- Become a Top Ranker in C++ Programming
- Take C++ Programming Tests
- Chapterwise Practice Tests: Chapter 1, 2, 3, 4, 5, 6, 7, 8, 9, 10
- Chapterwise Mock Tests: Chapter 1, 2, 3, 4, 5, 6, 7, 8, 9, 10
Related Posts:
- Practice Programming MCQs
- Apply for Information Technology Internship
- Apply for Computer Science Internship
- Practice Computer Science MCQs
- Buy C++ Books