• + 0 comments
    //Write your logic to print the tokens of the sentence here.
        while(*s){
            printf("%c",*s++);
            if(*s == ' '){
                printf("\n");
                *s++;
            }
        }