Answer to Question #72076 in C++ for Dhvani

Question #72076
Write a C++ code which reads the contents of a text file “first_file.txt”
1
Expert's answer
2017-12-22T04:45:44-0500
#include<iostream>
#include<fstream>
#include<vector>
#include<string>
using namespace std;

int main(int argc, char* argv[])
{
vector<string> data;
ifstream input_file("first_file.txt", ios::in);
string temp;

if(input_file!=NULL)
{
while(!input_file.eof())
{
input_file>>temp;
data.push_back(temp);
}
}
else
cout<<"Can't open first_file.txt"<<endl;


return 0;
}

Need a fast expert's response?

Submit order

and get a quick answer at the best price

for any assignment or question with DETAILED EXPLANATIONS!

Comments

No comments. Be the first!

Leave a comment

LATEST TUTORIALS
New on Blog
APPROVED BY CLIENTS