"Hello World!" in C

  • + 0 comments

    For C

    I wrote the code from scratch just to get more practice

    #include<stdio.h>
    
    int main()
    {
        char s[100];
        scanf("%[^\n]", s);
        
        printf("Hello, World!\n");
        printf("%s", s);
        
        return 0;
    }