what is the difference between Java Command Line and C
command Line?
Answer Posted / sunitha
In C and C++ when you invoke a program, the system passes
two parameters to it:
argc--the number of arguments on the command line
argv--a pointer to an array of strings that contain the
arguments
When you invoke a Java application, the system only passes
one parameter to it:
args--an array of Strings (just an array--not a pointer to
an array) that contain the arguments
| Is This Answer Correct ? | 26 Yes | 4 No |
Post New Answer View All Answers
Is null a string?
What is the difference between final, finally and finalize() in java?
What is static in java?
What invokes a thread's run() method in java programming?
What is percentage in java?
How static variable work in java?
What classes of exceptions may be thrown by a throw statement?
In case of inheritance what is the execution order of constructor and destructor?
What is an example of a conditional statement?
What is JVM and is it platform independent?
What is the reflection?
What are streams?
What is the difference between sleep and wait in java?
why java uses class level type casting ?
What are the different types of methodologies?