"Hello World!" in C

  • + 0 comments

    include

    include

    include

    include

    int main() {

    char s[100];
    scanf("%[^\n]%*c", &s);
    printf("Hello, World!\n");
        printf("%s",s);
    return 0;
    /* Enter your code here. Read input from STDIN. Print output to STDOUT */    
    return 0;
    

    }