Only few people are using function pointers in C. Yet, using function pointers to encode complexity has some beneficial properties, partly described in Rob Pike's Notes on Programming in C back in 1989.
When passed as parameters to other functions, function pointers enable the distribution of complexity and allow for a more concise API. The C standard library's
qsort()function is a good example.qsort()would have to be a whole family of functions, if it weren't for function pointers.Also, function pointers allow for an easy delegation of code execution during runtime.
atexit()comes to mind, but there are far more sophisticated scenarios, e.g. data-driven programs using function pointers.And lastly, function pointers are sometimes used to implement callbacks, which is probably the most prominent example.
Of course, it's possible to come up with examples that may serve as arguments in a debate against function pointers, e.g. array-of-functions-accepting-(pointer-to-function-accepting-int-and-returning-pointer-to-function)-and-returning-(pointer-to-pointer-to-function-accepting-int-and-returning-pointer-to-what-I-just-described). But the same holds true for, say, macros, yet they are widely used.
So, why is it that we don't see function pointers more often?
(I'm not trying to be argumentative or subjective, I just want to know why function pointers tend to be avoided)