home *** CD-ROM | disk | FTP | other *** search
/ The C Users' Group Library 1994 August / wc-cdrom-cusersgrouplibrary-1994-08.iso / listings / v_10_09 / 1009054c < prev    next >
Text File  |  1992-07-23  |  258b  |  14 lines

  1.  
  2. /*********** hello2.c *****************/
  3.  
  4. #include <stdio.h>
  5.  
  6. again(char *ss)
  7. {
  8.    printf("\nHello again from power C");
  9.    printf("\nHello again from power C -%s-", ss);
  10.    printf("\nHello again from power C");
  11. }
  12.  
  13. /*********** end of hello2.c ***********/
  14.