Function Pointers
Function Objects: Functors
Lambda Expressions
Error Handling
Like variables, functions are also stored in memory
As such, their addresses can also be accessed via pointers
This address identifies the location in memory where control is transferred to the function
The syntax to create a function pointer is:
return-type (*pointer_name)(parameters_types) = function_name
Once created, a function pointer can be used to:
→ call a function indirectly
→ be passed as an argument to another function (callback)
→ implement function tables