Well,now the post that you all have been waiting for.Today I'll start programming with you guys.
First let me write the program and then I will explain each component of it.
Program 1:Hello World
class Demo
{
public static void main(String args[])
{
System.out.println("Hello World");
}
}
{
public static void main(String args[])
{
System.out.println("Hello World");
}
}
Now let me explain you guys the meaning of the code.