fork(1) download
  1. #include <stdio.h>
  2. #include <string.h>
  3.  
  4. int main ()
  5. {
  6. char str[] = "Hello, world";
  7. char delim[] = "ow";
  8. char * pch = strtok (str,delim);
  9.  
  10. while (pch != NULL)
  11. {
  12. printf("%s", pch);
  13. pch = strtok (NULL, delim);
  14. }
  15. return 0;
  16. }
Success #stdin #stdout 0s 4188KB
stdin
Standard input is empty
stdout
Hell, rld