"Hello, World!" in C language

in programming •  8 months ago  (edited)

Everyone starts their journey in the programming world by displaying the line "Hello, World!" on the screen. Let's not break the tradition and do the same! :)

Code:

#include <stdio.h>

int main ()
{
    printf ("Hello, World!\n\n");
    system ("pause");
    return 0;
}

Posted using SteemPro Mobile

Authors get paid when people like you upvote their post.
If you enjoyed what you read here, create your account today and start earning FREE STEEM!