This C++ Program which counts the number of white-space characters in the file. The program creates an input file stream, reads a line on every iteration of a while loop, increments the count variable every time a white-space character (‘ ‘) or a tab-space character (‘\t’) is encountered and the count variable is printed on the screen.
Here is source code of the C++ program which counts the number of white-space characters 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 the White-Spaced Characters in a File
*/
#include <iostream>
#include <fstream>
int main()
{
int count = 0;
std::string line;
std::ifstream file("main.cpp");
while (getline(file, line))
{
for (int i = 0; i < line.length(); i++)
{
if (line[i] == ' ' || line[i] == '\t')
count++;
}
}
std::cout << "Number of white-space characters"
<< " is " << count << "\n.";
return 0;
}
$ g++ main.cpp $ ./a.out Number of white-space characters is 155.
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 C++ Internship
- Buy Computer Science Books
- Practice Computer Science MCQs
- Apply for Computer Science Internship