1234
for (char* token = strtok(string, " "); token; token = strtok(NULL, " ")) { printf("%s\n", token); }