Sort by

recency

|

738 Discussions

|

  • + 0 comments

    It’s widely used for systems programming, embedded systems, and building performance-critical applications. Skysetx

  • + 0 comments

    int i;
    for (i=0; s[i]!='\0'; i++) s[i] == ' ' ? printf("\n"): printf("%c",s[i]);
    return 0;

  • + 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");