Skip to content

Instantly share code, notes, and snippets.

@WindAzure
Created March 31, 2019 15:55
Show Gist options
  • Save WindAzure/32a8cd84bd644a77f24fb94b0821a67d to your computer and use it in GitHub Desktop.
Save WindAzure/32a8cd84bd644a77f24fb94b0821a67d to your computer and use it in GitHub Desktop.
#include <stdio.h>
#include <string.h>
int main()
{
char input[] = "I am apple";
char *temp = strtok(input, " ");
while (temp != NULL)
{
printf("%s\n", temp);
temp = strtok(NULL, " ");
}
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment