You are viewing a single comment's thread. Return to all comments →
while(*s != '\0') { if(*s == ' ') { printf("\n"); } else { printf("%c",*s); } 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 →