C++ Text File Write

Description

C++ Text File Write

#include <iostream> 
#include <fstream> 

using namespace std; 

int main() /*from w  w  w .jav  a2 s.c  om*/
{ 
    ofstream outfile("../MyFile.txt"); 
    outfile << "Hi" << endl; 
    outfile.close(); 

    return 0; 
}
#include <iostream>
#include <fstream>
#include <string>

using namespace std;

void WriteFile(string filename, int count, int start)
{
    ofstream outfile(filename.c_str());//from   ww  w  .j  a v  a 2s. c  om
    outfile << count << endl;
    int i;
    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;
}



PreviousNext

Related