Finding 4 character words in a text file
CBSE12D-2016
Problem Statement - 04A-2015
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
CSKC| Created: 8-Jan-2019 | Updated: 15-Jan-2019|CBSE12A-2015