What is the difference between java command line arguments and C command line arguments?
In C command line arguments, values are passed in the main() method having the two parameters.One is int argc i.e. arguments count and the another is char *argv[] i.e. arguments vector which is an array of pointers to character strings.