class NewClass{ public static void main(String a){ System.out.print(\"Hello\"); } }
When I\'m trying to execute above code, then it shows an er
public static void main(String a[]) is the main entry point signature for a typical Java program. So you should get on with this method signature.
public static void main(String a[])