Search code examples
cfunction-prototypes

Why use function prototypes?


Why use function prototypes in C? It seems sort of redundant because we already declare the function name, argument types, and return type in the definition. Do the prototypes have to be declared before the function is defined or used for the optimizations?


Solution

  • Generally speaking, you don't need to explicitly declare functions because defining them also declares them. Here are two situations where you would need to:

    1. The definition of the function is in an external module.

      For example, if the function is defined in definer.c, but you want to call it from user.c, you will need to declare the function in user.c or a file included by it (typically, definer.h).

    2. The definition of the function comes after a call to it.

      For example, if you have two functions that call each other, you will need to declare the second one before the definition of the first one.