View Single Post
Old 10-04-2007, 04:30 AM   #5 (permalink)
DJMaze
Senior Contributor
 
DJMaze's Avatar
 
Join Date: Mar 2005
Posts: 672
DJMaze is on a distinguished road
Code:
#include <stdio>

FILE *stream = fopen("myfile.txt", "a+");
fputs("my file content", stream);
fclose(stream);
but this should be in a different topic
__________________

UT: Ultra-kill... God like!
DJMaze is offline   Reply With Quote