home *** CD-ROM | disk | FTP | other *** search
/ Acorn User: China / Acorn User China CD-ROM (UK) (Disc B) / Acorn User China CD-ROM (UK) (Disc B).bin / STUTTGART / FROMUTS / UNIXLIB37B / test_c_popentest2 < prev    next >
Encoding:
Text File  |  1992-02-09  |  170 b   |  14 lines

  1. #include <stdlib.h>
  2. #include <stdio.h>
  3.  
  4. int main()
  5. {
  6. FILE *f;
  7.  
  8. if (!(f = popen("pipetest","w"))) { perror("popen()"); exit(1); }
  9.  
  10. fputs("Hello World\n",f);
  11.  
  12. pclose(f);
  13. }
  14.