home *** CD-ROM | disk | FTP | other *** search
/ PC World 2000 April / PCWorld_2000-04_cd.bin / Software / Servis / Devc / _SETUP.6 / Group16 / expexe.c < prev    next >
C/C++ Source or Header  |  1998-02-25  |  189b  |  18 lines

  1.  
  2. #include <stdio.h>
  3.  
  4. int
  5. ExportedFromExe ()
  6. {
  7.     printf ("This output produced by ExportedFromExe.\n");
  8.     return 0;
  9. }
  10.  
  11. int main()
  12. {
  13.     printf ("Hello, world\n");
  14.  
  15.     return 0;
  16. }
  17.  
  18.