Home » C Programming » Pointers » Question
  1. What does this declaration say?
    int (*(*B)())[12];
    1. B is function which returns array of integers
    2. B is function which returns function pointer which in turn returns pointer to integer array
    3. B is pointer to the function which returns array of pointers
    4. B is pointer to the function which returns pointer to integer array
    5. None of these
Correct Option: D

B is pointer to the function which returns pointer to integer array



Your comments will be displayed only after manual approval.