home *** CD-ROM | disk | FTP | other *** search
/ Aminet 18 / aminetcdnumber181997.iso / Aminet / text / hyper / hsc_source.lha / hsc / source / ugly / hello.c < prev    next >
Encoding:
C/C++ Source or Header  |  1996-05-18  |  182 b   |  12 lines

  1. #include <stdio.h>
  2. #include <string.h>
  3.  
  4. int main( void )
  5. {
  6.     char *hugo = "hugo was here.";
  7. /*    char *next = strtok( hugo, " " );*/
  8.  
  9.     printf( "hello.\n" );
  10.     return( 0 );
  11. }
  12.