1.
What is the purpose of using Strings [] args in the following statement, considering that no value is being returned to the main function.
public static void main (String[] args )
and then string [] means a string is being returned, so why the statement args, that too without being separated by comma ?
2. is it possible to have the following for loop like in C/C++
for ( ; condition ; )
{ ..
.. };