An ofstream
represents a file on the file system:
int main()
{
ofstream file("Plop.txt");
save_data(file);
}
Martin York
2010-08-19 20:39:43
An ofstream
represents a file on the file system:
int main()
{
ofstream file("Plop.txt");
save_data(file);
}