English

Write Function Definition for Tower() in C++ to Read the Content of a Text File Writeup.Txt, Count the Presence of Word Tower and Display the Number of Occurrences of this Word - Computer Science (C++)

Advertisements
Advertisements

Question

Write function definition for TOWER() in C++ to read the content of a text file WRITEUP.TXT, count the presence of word TOWER and display the number of occurrences of this word.

Note:

  •  The word TOWER should be an independent word
  • Ignore type cases (i.e. lower/upper case)

Example:

If the content of the file WRITEUP.TXT is as follows:

Tower of hanoi is an interesting problem. Mobile phone tower is away from here. Views from EIFFEL TOWER are amazing.

The function TOWER( ) should display the following :

3

Solution

void TOWER()
{
   int count=0;
   ifstream f("WRITEUP.TXT");
   char s[20];
   while (!f.eof())
   {
      f>>s;
      if (strcmpi(s,"TOWER")==0)
          count++;
   }
   cout<<count;
   f.close();
}
shaalaa.com
ifstream, ofstream, Classes
  Is there an error in this question or solution?
2014-2015 (March) All India Set 4
Share
Notifications

Englishहिंदीमराठी


      Forgot password?
Use app×