Hi, Venkata.
There is no difference between
public static void main( String[] args ) { }
and
public static void main( String args[] ) { } .
It's all about how you can define an array to
Java.
You can say "int[] array" or "int array[]". The
latter syntax is accepted mainly for C/C++
compatibility.
So it doesn't matter at all to Java which syntax
you use. I have read that the former syntax is
preferred, but that preference is one voiced by
humans and convention, not by Java.
Others may have thoughts on the subject....?
Art