Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include<stdio.h>
- #include<stdio.h>
- int main(){
- char s[1000];
- int A;
- gets(s);
- char* token=strtok(s," ");
- while(token!='\0'){
- printf("%s\n",token);
- token=strtok(NULL," ");
- }
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement