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

  1.  
  2. /*********** hello.c *****************/
  3.  
  4. #include <stdio.h>
  5.  
  6. main()
  7. {
  8.    char *ss = "this is a test";
  9.    printf("\nHello from power C");
  10.    again(ss);
  11. }
  12.  
  13. /*********** end of hello.c ***********/
  14.