Top

Discussion

What is the signature of math in function using command line arguments?

  • A.int main(int argc, char const *argv[]);
  • B.int main(int argc, char const **argv);
  • C.int main(int argc, char **argv);
  • D.all of the mentioned

Answer: D

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

No comment is present. Be the first to comment.
Loading…

Post your comment