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
List some java keywords sun like c, c + + keywords?
How do you implement polymorphism in our day to day life?
Which package has light weight components?
What does the three dot emoji mean?
What do you mean by byte code?
Explain yield() method in thread class ?
What does exp mean in math?
what do you mean by java annotations?
Explain spliterator in java8?
Which sorting is best in java?
Is passing by reference faster?
Explain the selection sort algorithm?
What is serialization in java?
Explain the difference between jdk, jre, and jvm?
What is off heap memory?