Hello World Program

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




