First page Back Continue Last page Graphics
POINTERS TO FUNCTIONS
cont.
If we had a function called next and a pointer to a function called fp
fp = &next
fp = next
The above two are equivalent. They set the function pointer to "point to the function next".