Learn To Program
Increase Your Knowlegde and Build Your Skill!
Pages
(Move to ...)
Home
Me
▼
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;
}
No comments:
Post a Comment
‹
›
Home
View web version
No comments:
Post a Comment