First page Back Continue Last page Graphics
POINTERS TO FUNCTIONS
There is NO WAY for a program to create or modify a function only a compiler can do that!
We pass a function as an argument by passing a "pointer to the function".
int (*fp)(int);
An int function. Called with an int parameter.