home *** CD-ROM | disk | FTP | other *** search
/ The C Users' Group Library 1994 August / wc-cdrom-cusersgrouplibrary-1994-08.iso / listings / v_09_01 / 9n01088b < prev    next >
Text File  |  1990-11-05  |  225b  |  24 lines

  1.  
  2.  
  3. Listing 2
  4.  
  5. /*
  6.  * Greetings in C-
  7.  */
  8. #include <stdio.h>
  9. #include <stdlib.h>
  10.  
  11. void greet(const char *s);
  12.     {
  13.     printf("Hello, %s!\n", s);
  14.     }
  15.  
  16. int main(void)
  17.     {
  18.     greet("Dan");
  19.     return EXIT_SUCCESS;
  20.     }
  21.  
  22.  
  23.  
  24.