#include #include using namespace std; int main () { ofstream csv; csv.open ("testing.csv"); csv << "Writing this to a file.\n"; csv.close(); return 0; }