C++ Program to Count Occurrence of a Word in a Text File
This C++ program will read a word from user and then count its total occurrence in a text file “my_data.txt”. Make sure you have already create this text file and have some text in it. Place this file in the same directory where your program source file is present. #include<iostream.h> #include<fstream.h> #include<string.h> int main() { …
C++ Program to Count Occurrence of a Word in a Text File Read More »
