home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD2.mdf / c / tools / make / cmake / samples / if / greeting.c next >
Encoding:
C/C++ Source or Header  |  1991-11-16  |  203 b   |  16 lines

  1. /* greeting.c - Program to print "Hello World" */
  2.  
  3. #include "hello.h"
  4. #include "world.h"
  5. #include "greeting.h"
  6.  
  7. int main ( void )
  8.  
  9. {
  10. print_hello ( ) ;
  11.  
  12. print_world ( ) ;
  13.  
  14. return ( 0 ) ;
  15. }
  16.