Inspiration
A “Hello, world!” program is traditionally used to introduce novice programmers to a programming language. “Hello, world!” is also traditionally used in a sanity test to make sure that a computer language is correctly installed, and that the operator understands how to use it.
What it does
C
#include <stdio.h>
int main() {
printf("Hello World");
return 0;
}
CPP
#include <iostream>
int main() {
std::cout << "Hello World";
return 0;
}
Built With
- c
- cpp
Log in or sign up for Devpost to join the conversation.