C Programming - Command Line Arguments

Exercise : Command Line Arguments - Point Out Correct Statements
1.
Which of the following is TRUE about argv?
It is an array of character pointers
It is a pointer to an array of character pointers
It is an array of strings
None of above
Answer: Option
Explanation:
No answer description is available. Let's discuss.

2.
Which of the following statements are FALSE about the below code?
int main(int ac, char *av[])
{
}
ac contains count of arguments supplied at command-line
av[] contains addresses of arguments supplied at a command line
In place of ac and av, argc and argv should be used.
The variables ac and av are always local to main()
Answer: Option
Explanation:
No answer description is available. Let's discuss.