Google News
logo
CPP - Quiz(MCQ)
What is the signature of math in function using command line arguments?
A)
int main(int argc, char **argv);
B)
int main(int argc, char const **argv);
C)
int main(int argc, char const *argv[]);
D)
All of the above

Correct Answer :   All of the above


Explanation : Any of the above signature can be used while using command line arguments in C++ programs

Advertisement