C++ ofstream create from file name
#include <iostream> #include <fstream> #include <string> using namespace std; void WriteFile(string filename, int count, int start) { ofstream outfile(filename.c_str()); int i; /* www. ja va 2 s . co m*/ for (i=0; i<count; i++) { outfile << start + i << endl; } outfile.close(); } int main() { WriteFile("../nums1.txt", 5, 100); WriteFile("../nums2.txt", 6, 200); return 0; }