Hello World

A “Hello world!” program is usually a computer program that displays the message “Hello world!”. It is very simple in most of the programming languages.

Let’s see how to write hello world program in c++.

Program

#include <stdio.h>

int main() {

    printf("Hello World");

    return 0;
}

Output

Hello World