What does argc and argv indicate in command-line arguments?(Assuming: int main(int argc, char *argv[]) )
argument count, argument variable
argument count, argument vector
argument control, argument variable
argument control, argument vector
Answers
Answered by
2
Answer:
(1) argument count, argument variable
Please mark as brainliest
hope it helps you
Answered by
0
Answer:The name of the variable argc stands for "argument count"; argc contains the number of arguments passed to the program. The name of the variable argv stands for "argument vector". A vector is a one-dimensional array, and argv is a one-dimensional array of strings
Similar questions