Sort by

recency

|

736 Discussions

|

  • + 0 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;
    

    }

  • + 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