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;
}
Writing a code to say "Hello, World!" in C, because it is my first language!!!
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;
}
Log in or sign up for Devpost to join the conversation.