News

In the true spirit of pointers, our first use case example is the reference to a previous article handling the implementation of a state machine with function pointers.
For example, function pointers can be used in task schedulers to dynamically call which function is executed from a task table. They can be used in complex state machines or switch statement to ...
So read on! Function Pointers In general, function pointers aren’t any more mysterious than data pointers: the main difference is that one references variables and the other references functions.
A callback is a function that is executed through a pointer where the function being pointed to contains application specific code. Callbacks are normally passed into a function and provides the ...
What are they? When used correctly function pointers are type safe, so what's the benefit of delegates?