C Programming - Complicated Declarations - Discussion
|
|
|
|
Read more:"Loneliness is the most terrible poverty."
- Mother Teresa
|
| 11. |
What do the following declaration signify?
char **argv;
|
| [A]. |
argv is a pointer to pointer. | | [B]. |
argv is a pointer to a char pointer. | | [C]. |
argv is a function pointer. | | [D]. |
argv is a member of function pointer. |
Answer: Option B
Explanation:
No answer description available for this question.
|
|
|