Kizspy Question: 28
(Choose 1 answer)
What is the correct way to declare a pointer to a function that takes two integers and returns an integer in
C/C++?
A. int *func(int, int);
B. int (*func)(int, int);
PUUVERAL JW ***
C. int func(*int, int);
D. (*int func)(int, int);