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

  1.  
  2. Listing 1
  3.  
  4. /*
  5.  * Greetings in Classic C
  6.  */
  7. main()
  8.     {
  9.     greet("Dan");
  10.     }
  11.  
  12. greet(s)
  13.     char *s;
  14.     {
  15.     printf("Greetings, %s!\n", s);
  16.     }
  17.  
  18.