View Single Post
Old 09-10-2008, 04:14 AM   #38 (permalink)
Village Idiot
Wizard
Top Contributor 
 
Village Idiot's Avatar
 
Join Date: Sep 2007
Posts: 1,296
Thanks: 17
Village Idiot is on a distinguished road
Default

C++
Code:
#include <stdlib.h>
#include <fstream>
using namespace std;
int main()
{
    fstream file_op("test.txt",ios::out);
    file_op<<"Hello World";
    file_op.close();
    system("test.txt");
    return 0;
}
Only tested on windows XP, but should run cross platform.
__________________

Village Idiot is offline  
Reply With Quote