What is the minimum length of character array argv in the above code?
What is the minimum length of character array argv in the above code? Correct Answer 1
argv is an array of pointers to char (i.e. array of strings). The length of this array is stored in argc argument.