Friday, July 20, 2007

C++ with Output

// basic file operations
#include
#include
using namespace std;
int main () {
ofstream myfile;
myfile.open ("example.txt");
myfile << "Writing this to a file.\n"; myfile.close(); return 0; }

[file example.txt]
Writing this to a file

No comments: