Skip to content

Instantly share code, notes, and snippets.

@thekvs
Created February 2, 2017 07:10
Show Gist options
  • Save thekvs/4e3b6e00135b63dc22cc3a86a63820b0 to your computer and use it in GitHub Desktop.
Save thekvs/4e3b6e00135b63dc22cc3a86a63820b0 to your computer and use it in GitHub Desktop.
#include <fstream>
#include <string>
int
main()
{
std::string file = "/tmp/a_file.txt";
std::ofstream dst(file, std::ios::trunc);
dst << "Hello, world!" << std::endl;
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment