You are viewing a single comment's thread. Return to all comments →
//Write your logic to print the tokens of the sentence here. while(*s){ printf("%c",*s++); if(*s == ' '){ printf("\n"); *s++; } }
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 →