Q:

C++ Program to Retrieve information from file using File Handling

belongs to collection: C++ File Handling Solved Programs

0

Write a C++ Program to Retrieve information from file using File Handling. Here’s simple Program to Retrieve information from 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 Retrieve information from 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 Retrieve information from file using File Handling  */

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

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

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

#include<iostream>
#include<fstream>
using namespace std;

int main()
{
        ifstream fin;
        char fname[100];
        char rec[100];


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

        cout<<"\nThe file contains information is shown below :: \n\n";

        fin.open(fname, ios::in);
    fin.get(rec, 100);
    cout<<rec;

        fin.close();

        cout<<"\n";
    return 0;

}

OUTPUT : :


/*  C++ Program to Retrieve information from file using File Handling  */

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

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

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


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

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

The file contains information is shown below ::

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 Retrieve information from file using File Handling 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)

Write a C++ Program to Display Contents of text fi... >>
<< Write a C++ Program to Enter or Insert Data into F...