View Single Post
Re: Beginner / noob - need help :/
Old
  (#4)
botman
Super Moderator
 
Status: Offline
Posts: 280
Join Date: Jan 2004
Location: Plano, TX
Default Re: Beginner / noob - need help :/ - 02-07-2004

Code:
FILE *fp = fopen("logfile.txt", "a");
 fprintf(fp, "Insert Error Message Here!!!\n");
 fclose(fp);
If you don't know standard C I/O routines like 'fopen', 'fprintf', or 'fclose', search for them on google.com.

botman
  
Reply With Quote