How can I create a "function pointer" (and (for example) the function has parameters) in C?
|
3
|
|
|
|
|
|
http://www.newty.de/fpt/index.html
|
||||
|
|
|
This previous SO question may help you: http://stackoverflow.com/questions/840501/how-do-function-pointers-in-c-work |
||
|
|
|
|
|
||
|
|
|
|
I found this site helpful when I was first diving into function pointers. |
||
|
|
|
|
First declare a function pointer:
Almost the same as a function prototype.
Now assign function addresses to those, and you can use them like they're functions:
Function pointers are great fun. |
||
|
|
|
|
Additionally, we can create array of pointers to function:
|
||
|
|
|
|
You can also define functions that return pointers to functions:
f is a function that takes a single int parameter and returns a pointer to a function that takes a double parameter and returns int. |
||
|
|
