How would you declare an array of pointers to functions?

How would you declare an array of pointers to functions that take no parameters and return an int?
A. int (*arr[N])(void);
B. int *arr(void)[N];
C. int *arr[N](void);
D. int (*arr)(void)[N];

Questions by jbode   answers by jbode

  
Showing Answers 1 - 3 of 3 Answers

RASHMITHA C

  • Dec 29th, 2020
 

b

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions