A type called FunctionPtr() that represents a pointer to a function that returns an int and that takes no arguments is defined in this way:
typedef int (*FunctionPtr) (void);
See this question at stackoverflow.com to learn more.
A type called FunctionPtr() that represents a pointer to a function that returns an int and that takes no arguments is defined in this way:
typedef int (*FunctionPtr) (void);
See this question at stackoverflow.com to learn more.