Skip to content

Instantly share code, notes, and snippets.

@theiwaz
Last active January 20, 2021 05:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save theiwaz/480e86eae3bcf8d2aa0a352db2fac90e to your computer and use it in GitHub Desktop.
Save theiwaz/480e86eae3bcf8d2aa0a352db2fac90e to your computer and use it in GitHub Desktop.
Handy cpp snippets

Easy file appending

#include <iostream>
#include <fstream>	

of.open("filename.csv", std::ios::app);
of << "Print this to file" ;
of.close();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment