'DICTIONARY word checker via pipe (your must have dict installed on your Unix machine) ' 'string for the result line$ (in C is line_S line$="" 'pointer for the file handle told to go in C MAIN CM FILE *theword; 'C code to open the pipe, we pass the word as well and make open read/write w+ C theword = popen("dict wordtocheck", "w+"); 'get one line back from the pipe C fgets(line_S, LMAX, theword); 'close the pipe C pclose(theword); 'print the results print line$