Q:

Write a C++ Program to Display Contents of text file

belongs to collection: C++ File Handling Solved Programs

0

Write a C++ Program to Display Contents of text file using File Handling. Here’s simple Program to Display the Contents of a text file using File Handling in C++ Programming Language.

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

Below is the source code for C++ Program to Display Contents of text file using File Handling which is successfully compiled and run on Windows System to produce desired output as shown below :

 
 

SOURCE CODE : :

/*  C++ Program to Display Contents of text file  */


/*-------------file4.txt Content-----------------

Welcome to CodezClub.
It is a programming Website.
Hope u like it. Thanks.........

------------------------------------------------*/


#include<iostream>
#include<string.h>
#include<fstream>
#include<stdlib.h>
using namespace std;

int main()
{
        ifstream ifile;
        char s[100], fname[100];

        cout<<"Enter file name to read :: ";
        cin>>fname;

        ifile.open(fname);

        if(!ifile)
        {
                cout<<"\nError in opening file..!!\n";

                exit(0);
        }

        cout<<"\n";

        while(ifile.eof()==0)
    {
        ifile>>s;
        cout<<s<<" ";
    }

        cout<<"\n";
        ifile.close();

return 0;

}

OUTPUT : :


/*  C++ Program to Display Contents of text file  */


/*-------------file4.txt Content-----------------

Welcome to CodezClub.
It is a programming Website.
Hope u like it. Thanks.........

------------------------------------------------*/


******************** OUTPUT *********************

Enter file name to read :: C:\\Users\\acer\\Documents\\file4.txt

Welcome to CodezClub. It is a programming Website. Hope u like it. Thanks.........

Process returned 0

Above is the source code for C++ Program to Display Contents of text file which is successfully compiled and run on Windows System.The Output of the program is shown above .

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

C++ Program to Merge Two Files into a Single file... >>
<< C++ Program to Retrieve information from file usin...