home *** CD-ROM | disk | FTP | other *** search
/ RISC DISC 1 / RISC_DISC_1.iso / pd_share / code / unixlib / !UnixLib / test / c / prtest < prev    next >
Encoding:
Text File  |  1994-03-08  |  141 b   |  12 lines

  1. #include <stdio.h>
  2.  
  3. int
  4. main ()
  5. {
  6.   printf ("Hello: ");
  7.   (void) getchar ();
  8.   fputs ("World: ", stdout);
  9.   (void) getchar ();
  10.   return 0;
  11. }
  12.