Answers for "string to file c++"

C++
0

write to file in C++

ofstream myfile;
myfile.open("file.txt");

myfile << "write this to file"
Posted by: Guest on July-01-2020
0

write to file in c++

++ cCopy#include <iostream>
#include <fstream>

using std::cout; using std::ofstream;
using std::endl; using std::string;
using std::fstream;

int main()
{
    string filename("tmp.txt");
    fstream file_out;

    file_out.open(filename, std::ios_base::out);
    if (!file_out.is_open()) {
        cout << "failed to open " << filename << '\n';
    } else {
        file_out << "Some random text to write." << endl;
        cout << "Done Writing!" << endl;
    }

    return EXIT_SUCCESS;
}
Posted by: Guest on September-24-2021

Browse Popular Code Answers by Language