Answers for "c++ program to read data from a file"

C++
13

read a file c++

// reading a text file
#include <iostream>
#include <fstream>
#include <string>
using namespace std;

int main () {
  string line;
  ifstream myfile ("example.txt");
  if (myfile.is_open())
  {
    while ( getline (myfile,line) )
    {
      //use line here
    }
    myfile.close();
  }

  else cout << "Unable to open file"; 

  return 0;
}
Posted by: Guest on July-07-2020
1

c++ read integers from file

int main() {
	
    ifstream file("o.txt");
  	
    int num;
    while (file >> num){
      //whatever you need to do
    }
  	
}
Posted by: Guest on October-05-2020

Code answers related to "c++ program to read data from a file"

Browse Popular Code Answers by Language