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

By | 04.01.2017

Retrieve information from file


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.


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 .

If you found any error or any queries related to the above program or any questions or reviews , you wanna to ask from us ,you may Contact Us through our contact Page or you can also comment below in the comment section.We will try our best to reach up to you in short interval.


Thanks for reading the post….

5 1 vote
Article Rating
Subscribe
Notify of
guest

1 Comment
Oldest
Newest Most Voted
Inline Feedbacks
View all comments
Samson

A c++ program to select questions from a file and compile them to generate an exam paper of set marks say 100 marks