How does main() hold arguments passed to it?
Answers
Answered by
7
Answer:
Hope you like it.
Explanation:
The main() function has two arguments that traditionally are called argc and argv and return a signed integer. Most Unix environments expect programs to return 0 (zero) on success and -1 (negative one) on failure. The argument vector, argv, is a tokenized representation of the command line that invoked your program.
Similar questions