-
What does this declaration say?
int (*(*B)())[12];
-
- B is function which returns array of integers
- B is function which returns function pointer which in turn returns pointer to integer array
- B is pointer to the function which returns array of pointers
- B is pointer to the function which returns pointer to integer array
- None of these
Correct Option: D
B is pointer to the function which returns pointer to integer array