|
|
|
|
Pointers To Functions
Every function has a location in memory that can be assigned to pointer. A function's address is the entry point of the function. Because of this, a cunction pointer can be used to call a function. The address of a function can be obtained by using the function's name without any parentheses or arguments. #include <stdio.h> |