Is there a good reason to pass pointer of function to another function in C. I do not see a general use case of pointer of function.
If someone can give some use case where pointer of function is the only way to achieve some specific use case that would be great.
One use case is to have a async callback function.
You pass a pointer of a
callback()
function to aworker()
function.Once worker function has completed the work, it will call the
callback()
function.This is essentially a subscriber publisher pattern in Object Oriented languages (C++/Java).