Skip to main content

Command Palette

Search for a command to run...

Hello World Program

Updated
Hello World Program
M

IIIT - N Software Geek. Startup Enthusiast. Build for the Future.

Write a program that prints the Hello World ?

Java Code:

public class Main{
    public static void main(String[] args){
        System.out.println("Hello World");
    }
}

Python code:

print("Hello world")

c++ code:

#include <iostream>
using namespace std;
int main(){
    cout<<"Hello World";
    return 0;
}

Output:

For more explanation about this program, click this link and learn more about it

Java Hello World Program Explanation

More from this blog