Answers for "cpp read text file"

C++
1

read text file c++

#include <iostream>
#include <fstream>
#include <string>

using namespace std;

int main() {
    ifstream is("samplefile.txt");
    string line;

    while (getline(is, line)) {
        cout << line << endl;
    }
    return 0;
}
Posted by: Guest on October-17-2021
17

c++ files

// basic file operations
#include <iostream>
#include <fstream>
using namespace std;

int main () {
  ofstream myfile;
  myfile.open ("example.txt");
  myfile << "Writing this to a file.\n";
  myfile.close();
  return 0;
}
Posted by: Guest on November-09-2019
0

read text from file c++

#include<iostream>
#include<fstream>

using namespace std;

int main() {

 ifstream myReadFile;
 myReadFile.open("text.txt");
 char output[100];
 if (myReadFile.is_open()) {
 while (!myReadFile.eof()) {


    myReadFile >> output;
    cout<<output;


 }
}
myReadFile.close();
return 0;
}
Posted by: Guest on January-23-2021

Browse Popular Code Answers by Language