Skip to content

Instantly share code, notes, and snippets.

@b4284
Created March 29, 2016 03:58
Show Gist options
  • Select an option

  • Save b4284/89ff23cb065130301d17 to your computer and use it in GitHub Desktop.

Select an option

Save b4284/89ff23cb065130301d17 to your computer and use it in GitHub Desktop.
#include <fstream>
auto try1(void) {
std::ofstream outfile("/tmp/k.txt");
return outfile;
}
int main(void) {
auto outfile = try1();
outfile << "this is an string from c++" << std::endl;
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment