Here is the program to print Hello World in Java.
Program:
public class hello
{
public static void main(String args[])
{
System.out.println(“Hello World”);
}
}
This is the first program of Java
Here is the program to print Hello World in Java.
public class hello
{
public static void main(String args[])
{
System.out.println(“Hello World”);
}
}