fork download
  1. #include <stdio.h>
  2. #include <stdlib.h>
  3. #include <string.h>
  4.  
  5. int main(void) {
  6. char *pointer;
  7. char strIn[25];
  8.  
  9. printf(">");
  10. fgets(strIn, 25, stdin);
  11. pointer= strtok(strIn," ");
  12. while(pointer != NULL) {
  13. printf("%s\n", pointer);
  14. pointer = strtok(NULL, " ");
  15. }
  16. }
  17.  
Success #stdin #stdout 0s 2164KB
stdin
25 35 +
stdout
>25
35
+