home *** CD-ROM | disk | FTP | other *** search
/ Simtel MSDOS 1992 June / SIMTEL_0692.cdr / msdos / pgmutl / makeobj.arc / EXAMPLE.C < prev    next >
Text File  |  1988-06-20  |  189b  |  12 lines

  1. /* EXAMPLE.C 6-20-88 */
  2.  
  3. #include <conio.h>
  4.  
  5. extern char examfile[];  /* declaration of linked object file */
  6.  
  7. int main(void)
  8. {
  9.   cprintf("\n\n%s\n\n",examfile);
  10.   return(0);
  11. }
  12.