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

  1. /* hello.c - Function to print "Hello" */
  2.  
  3. #include <stdio.h>
  4. #include "hello.h"
  5. /* CMAKE - INCLUDE END */
  6.  
  7. void print_hello ( void )
  8.  
  9. {
  10. printf ( "Hello\n" ) ;
  11. }
  12.