How will you declare an array of three function pointers where each function receives two ints and returns a float?

Showing Answers 1 - 2 of 2 Answers

gosha

  • May 3rd, 2007
 

typedef float (*Func)(int, int);

Func f[3];

  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