fork(2) download
  1. #include <stdio.h>
  2. #include <string.h>
  3.  
  4. int main(void) {
  5. char text[] = "Hello World";
  6.  
  7. for(char* word = strtok(text, " .,?!"); word; word = strtok(NULL, " .,?!"))
  8. printf("%s? ", word);
  9.  
  10. return 0;
  11. }
  12.  
Success #stdin #stdout 0s 4228KB
stdin
Standard input is empty
stdout
Hello? World?