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
Write a method to check if input string is palindrome?
What does a void function return?
What is application system?
What is type safety in java?
what is the difference between the methods sleep() and wait()? : Java thread
What are the advantages of defining packages in java?
What an i/o filter?
What is string :: npos?
What is the do while loop syntax?
What is exception hierarchy in java?
What are the differences between stringbuffer and stringbuilder?
What is a flag and how does it work?
Explain the transient field modifier?
Explain about wait() method?
How dead lock situation occurs in java and how you can identify it?