home *** CD-ROM | disk | FTP | other *** search
/ Share Gallery 1 / share_gal_1.zip / share_gal_1 / LA / LA024.ZIP / SMAK.EXE / SAMPLE1.C < prev    next >
Text File  |  1990-07-26  |  377b  |  21 lines

  1. /*************************************************************************
  2. *                                         *
  3. * SAMPLE1.C                                 *
  4. *                                         *
  5. *************************************************************************/
  6.  
  7. #include <stdio.h>
  8.  
  9.  
  10. int second_function()
  11. {
  12.     printf("\n\nHello ");
  13.     return(1);
  14. }
  15. int third_function()
  16. {
  17.     printf("World...\n");
  18.     return(1);
  19. }
  20.  
  21.