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)

link|improve this question

1  
What makes you think they are avoided? What circumstances have you seen that would have been simplified by the use of function pointers? Who have you talked to that has indicated that they found function pointers difficult? Also, I don't think this question belongs on SO; maybe Programmers. – Seth Carnegie Dec 14 '11 at 20:50
1  
What are you talking about? I see function pointers all the time in C code. I don't think most C programmers think function pointers are difficult. The only annoying thing about them is the somewhat awkward syntax, but whatever, typedef. – Charles Salvia Dec 14 '11 at 20:50
feedback

closed as not constructive by Hans Passant, Pubby, James McNellis, Michael Krelin - hacker, Bart Dec 14 '11 at 20:54

This question is not a good fit to our Q&A format. We expect answers to generally involve facts, references, or specific expertise; this question will likely solicit opinion, debate, arguments, polling, or extended discussion. See the FAQ for guidance on how to improve it.