home *** CD-ROM | disk | FTP | other *** search
/ PC World 2000 January / PCWorld_2000-01_cd.bin / Software / Servis / Devc / _SETUP.5 / Group19 / exe.c < prev    next >
C/C++ Source or Header  |  1998-04-21  |  153b  |  14 lines

  1. #include <stdio.h>
  2.  
  3. extern void Test();
  4.  
  5. int main()
  6. {
  7.     printf ("Program started.\n");
  8.     Test ();
  9.     printf ("Program ends.\n");
  10.  
  11.     return 0;
  12. }
  13.  
  14.