Tagged Questions

3
votes
2answers
4k views

Writing stringstream contents into ofstream

I'm currently using a std::ofstream a function and a std::stringstream std::ofstream outFile; outFile.open(output_file); Then I call a function GetHolesResults(..., std::ofstream &outFile){ ...
2
votes
4answers
131 views

Why is my output file empty in this simple program using std::fstream?

I am trying to understand how to read information form an input file and write that data into an output file. I understand how to read from a file and dispaly its contents, but I DONT understand how ...
1
vote
2answers
116 views

C++ IO binary file streams: default value when output isn't specified

My question is about binary file I/O. Suppose the following code is run: #include <iostream> #inclide <fstream> int main(){ fstream out; ...