| [ Web Proxy ] |
| Viewing: https://riptutorial.com/c/topic/250/function-pointers | [Back] [Original] |
[logo rip]
Function pointers are pointers that point to functions instead of data types. They can be used to allow variability in the function that is to be called, at run-time.
returnType (*name)(parameters)
typedef returnType (*name)(parameters)
typedef returnType Name(parameters);
Name *name;
typedef returnType Name(parameters);
typedef Name *NamePtr;
| Web Proxy Viewer | New URL | Original Page |