home *** CD-ROM | disk | FTP | other *** search
/ The C Users' Group Library 1994 August / wc-cdrom-cusersgrouplibrary-1994-08.iso / listings / v_08_11 / 8n11107b < prev    next >
Text File  |  1990-08-09  |  197b  |  11 lines

  1.  
  2.         #include <stdio.h>
  3.         FILE    *pfile;
  4.  
  5.         void main(void)
  6.            {
  7.            pfile = fopen("LPT2","w");
  8.             fprintf(pfile,"Hello World\n");
  9.             }
  10.  
  11.