GMgKe586q6suSQnyqZLlGCooeWM

Pages

Search

Saturday, March 19, 2011

CPP - Writing To Output File

#include <iostream>
#include <fstream>

using namespace std;

int main(int argc, char* argv[]){
    ofstream output("lola.txt");
    output << "Indonesia is a nice one" << endl;
    return 0;
}

Share/Bookmark

No comments:

Post a Comment