11 lines
187 B
C++
11 lines
187 B
C++
#include <iostream>
|
|
#include <fstream>
|
|
using namespace std;
|
|
|
|
int main () {
|
|
ofstream csv;
|
|
csv.open ("testing.csv");
|
|
csv << "Writing, this, to, a, file";
|
|
csv.close();
|
|
return 0;
|
|
}
|