MLH Challenge in Beginners Week

Writing a code in C language that says "Hello, World!". This is a challenge of Major League Hacking (MLH).

// Printing "Hello, World!" in C
#include <stdio.h>
int main() 
{
    printf("Hello, World!");
    return 0;
}

Built With

Share this project:

Updates