View Single Post
  #3 (permalink)  
Old February 26th, 2007, 10:08 AM
Geo121 Geo121 is offline
Friend of Wrox
 
Join Date: Jan 2006
Posts: 103
Thanks: 0
Thanked 1 Time in 1 Post
Send a message via AIM to Geo121
Default

HERE IS YOUR CODE :

#include <iostream>
#include <fstream>
#include <string>
using namespace std;

int main () {
     string content;

     cout << "Enter your content: ";
     getline(cin, content);

     ofstream myfile;
     myfile.open ("example.txt");
     myfile << content;
     myfile.close();
     return 0;
}

~ Geo

~ Don't take life too seriously, you'll never get out alive!
Reply With Quote