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
If we don’t want some of the fields not to serialize how to do that?
How many types of equations are there?
Explain the difference between comparator and comparable in java?
Can a class extends itself in java?
worst case complexities of Quick sort and Merge sort.
What is the difference between super class & sub class?
How does compareto method work?
What is canonical name in java?
Why java strings are immutable in nature?
Can the garbage collection be forced by any means?
I don’t want my class to be inherited by any other class. What should I do?
What is the indent key?
How does multithreading take place on a computer with a single cpu in java programming?
How will you print number in reverse (descending) order in BST.
what do you understand by synchronization? : Java thread