To be truly standards-compliant, must all functions in C (except for main) have a prototype, even if they are only used after their definition in the same translation unit?
|
|
It depends on what you mean by 'truly standards compliant'. However, the short answer is "it is a good idea to ensure that all functions have a prototype in scope before being used". A more qualified answer notes that if the function accepts variable arguments (notably the Note, however, that if the function takes arguments that are subject to 'normal promotions' in the absence of prototypes (for example, a function that takes a C99 disallows 'implicit int'...that means both oddball cases like ' Note that if a function is file static, it may be defined before it is used, and need not be preceded by a declaration. GCC can be persuaded to witter if a non-static function is defined without a declaration preceding it ( |
|||
|
|
|
|
No, functions do not always need a prototype. The only requirement is that a function be "declared" before you use it. There are two ways to declare a function: to write a prototype, or to write the function itself (called a "definition.") A definition is always a declaration, but not all declarations are definitions. |
||||||||
|
|
|
Yes, every function must have a prototype, but that prototype may appear either in a separate declaration or as part of the function's definition. Function definitions written in C89 and up naturally have prototypes, but if you write things in classic K&R style, thus:
then the function definition has no prototype. If you write ANSI C (C89) style, thus:
then the function definition has a prototype. |
||
|
|
|
|
To the best of my knowledge (in ANSI C89/ISO C90), no. I am unsure about C99; however, I would expect the same. Personal Note: I only write function prototypes when...
|
|||
|
|
