Discussion :: Complicated Declarations
-
What do the following declaration signify?
char *arr[10];
A.
arr is a array of 10 character pointers.
|
B.
arr is a array of function pointer.
|
C.
arr is a array of characters.
|
D.
arr is a pointer to array of characters.
|
Answer : Option A
Explanation :
No answer description available for this question.
Be The First To Comment