home *** CD-ROM | disk | FTP | other *** search
/ World of A1200 / World_Of_A1200.iso / datafiles / text / c_tutor / formout.c < prev    next >
C/C++ Source or Header  |  1995-02-27  |  329b  |  16 lines

  1. #include "stdio.h"
  2. main()
  3. {
  4. FILE *fp;
  5. char stuff[25];
  6. int index;
  7.  
  8.    fp = fopen("TENLINES.TXT","w");   /* open for writing */
  9.    strcpy(stuff,"This is an example line.");
  10.  
  11.    for (index = 1;index <= 10;index++)
  12.       fprintf(fp,"%s  Line number %d\n",stuff,index);
  13.  
  14.    fclose(fp);    /* close the file before ending program */
  15. }
  16.