English

A Text File Named Matter.Txt Contains Some Text Which Needs to Be Displayed Such that Every Next Character is Separated by a Symbol '#'. Write a Function Definition for Hashdisplay() in - Computer Science (C++)

Advertisements
Advertisements

Question

A text file named MATTER.TXT contains some text which needs to be displayed such that every next character is separated by a symbol '#'.

Write a function definition for HashDisplay() in C++ that would display the entire content of the file MATTER.TXT in the desired format:

Example:

if the file Matter.TXT has the following content stored in it:

THE WORLD IS ROUND

The function HashDisplay() should display the following content:

T#H#E #W#O#R#L#D# #I#S# #R#O#U#N#D#

Answer in Brief

Solution

void HashDisplay()
{
    ifstream fin("MATTER.TXT"); //opening text file
    int size;
    char ch;
    fin.seekg(0, ios::end);
    size = fin.tellg();
    fin.seekg(0, ios::beg);
    for(int i=0; i < size; i++)
    {
        fin.get(ch);
        cout << ch << "#";
    }
    fin.close();
}
shaalaa.com
Implementation of Basic File Operations on Text and Binary File in C++
  Is there an error in this question or solution?
2017-2018 (March) All India Set 4
Share
Notifications

Englishहिंदीमराठी


      Forgot password?
Use app×