what is the difference between Java Command Line and C
command Line?

Answers were Sorted based on User's Feedback



what is the difference between Java Command Line and C command Line?..

Answer / 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

what is the difference between Java Command Line and C command Line?..

Answer / ankit goyal

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 does not pass any argument to it.
if passes the arguments in an array of Strings if and only if the arguments are given by the user.
otherwise system does not pas any argument.

Is This Answer Correct ?    1 Yes 0 No

Post New Answer

More Core Java Interview Questions

Define jre i.e. Java runtime environment?

0 Answers  


What are bind parameters?

0 Answers  


Is array primitive data type in java?

0 Answers  


Can you pass by reference in java?

0 Answers  


Can we inherit inner class?

0 Answers  






What are the Abstract Classes provided by Java?

5 Answers   Oracle,


Explain the importance of throws keyword in java?

0 Answers  


What is the difference between object oriented programming language and object based programming language?

0 Answers  


Which package has light weight components?

0 Answers  


What is the difference between class forname and new?

0 Answers  


Can we execute java program without main method?

0 Answers  


How do I stop concurrentmodificationexception?

0 Answers  


Categories