You are viewing a single comment's thread. Return to all comments →
int main() {
char str[1000]; fgets(str,sizeof(str),stdin); getchar(); for(int i=0;i<strlen(str);i++){ char ch=str[i]; printf("%c",ch); if(ch==' '){ printf("\n"); } } return 0;
}
Seems like cookies are disabled on this browser, please enable them to open this website
Printing Tokens
You are viewing a single comment's thread. Return to all comments →
int main() {
}