Sort by

recency

|

735 Discussions

|

  • + 0 comments
    #include <stdio.h>
    #include <string.h>
    #include <math.h>
    #include <stdlib.h>
    
    int main() {
    
        char *s;
        s = malloc(1024 * sizeof(char));
        scanf("%[^\n]", s);
        s = realloc(s, strlen(s) + 1);
        //Write your logic to print the tokens of the sentence here.
        for (char *c = s; *c != NULL; c++) {
        if (*c == ' ') {
            *c = '\n';
        }
    }
    printf("%s", s);
        return 0;
    }
    
  • + 0 comments
            for(int i=0;s[i]!='\0';i++){
        if(s[i]!=' ') printf("%c",s[i]);
        else printf("\n");
    
  • + 0 comments
    //Write your logic to print the tokens of the sentence here.
        while(*s){
            printf("%c",*s++);
            if(*s == ' '){
                printf("\n");
                *s++;
            }
        }
    
  • + 0 comments

    for(int i=0; i

  • + 0 comments
    while(*s != '\0')
    {
        if(*s == ' ')
        {
            printf("\n");
        }
        else
        {
        printf("%c",*s);
        }
        s++;
    }