Hello, OnlineGDB Q&A section lets you put your programming query to fellow community users. Asking a solution for whole assignment is strictly not allowed. You may ask for help where you are stuck. Try to add as much information as possible so that fellow users can know about your problem statement easily.

Can I wirte data to an output .txt file? C++

0 votes
asked Mar 14, 2018 by peternk (120 points)
I have a program that reads data from a .txt file, and I want it to create a new .txt file and write data to it.

I have tried this:
outputFile.open((OutPutFileName.txt").c_str());

Thanks

1 Answer

0 votes
answered Mar 15, 2018 by anonymous
Yes. You can write. Are you facing any problem?
commented Aug 18, 2018 by Ethan Alexander Lee (580 points)
#include <iostream>
#include <fstream>
using namespace std;

int main() {
    ofstream output;
    output.open("examples.txt");
    string outgoing;
    cin>>outgoing;
    output<<outgoing<<endl;
    output.close();
    return 0;
}
commented Jun 18, 2019 by starai (100 points)
I have a problem!   The file name appears on the screen tab but the file is not created.
Welcome to OnlineGDB Q&A, where you can ask questions related to programming and OnlineGDB IDE and and receive answers from other members of the community.
...