home *** CD-ROM | disk | FTP | other *** search
/ Magazyn Exec 3 / CD_Magazyn_EXEC_nr_3.iso / Programy / Biblioteki / ppclibemu07.lha / tests / hello_world.c next >
C/C++ Source or Header  |  1998-12-20  |  95b  |  9 lines

  1. #include <stdlib.h>
  2. #include <stdio.h>
  3.  
  4. main()
  5. {
  6.   printf("Hello %s!\n","World");
  7.   exit(0);
  8. }
  9.