home *** CD-ROM | disk | FTP | other *** search
/ QBasic & Borland Pascal & C / Delphi5.iso / C / Samples / CM100EXE.ARJ / CM100EXE.ZIP / SAMPLES / IF / WORLD.C < prev    next >
Encoding:
C/C++ Source or Header  |  1991-11-17  |  146 b   |  11 lines

  1. /* world.c - Function to print "World" */
  2.  
  3. #include <stdio.h>
  4. #include "world.h"
  5.  
  6. void print_world ( void )
  7.  
  8. {
  9. printf ( "World\n" ) ;
  10. }
  11.