Ok, so I have heard different opinions on this subject and just want to make sure I understand it correctly.
For C++
Declarations void f();
and void f(void);
mean precisely the same thing, the function f
does not take any parameters. Ditto for definitions.
For C
Declaration void f(void);
means that f
does not take any parameters.
Declaration void f();
means that function f
may or may not have parameters, and if it does, we don't know what kind of parameters those are, or how many there is of them. Note that it is NOT the same as ellipsis, we can't use va_list
.
Now here is where things get interesting.
Case 1
Declaration:
void f();
Definition:
void f(int a, int b, float c)
{
//...
}
Case 2
Declaration:
void f();
Definition:
void f()
{
//...
}
Question:
What happens at compile time in cases 1 and 2 when we call f
with the correct arguments, wrong arguments and no arguments at all? What happens at run time?
Additional question:
If I declare f
with arguments, but define it without them, will it make a difference? Should I be able to address the arguments from the function body?
The whole thing is really a moot point if you're using C99 or later (and, unless you're stuck on an old embedded system or something like that, you probably should be using something more modern).
C99/C11 section
6.11.6 Future language directions, Function declarators
states:Hence you should avoid using things like
void f();
altogether.If it takes parameters, list them, forming a proper prototype. If not, us
void
to indicate definitively that it doesn't take any parameters.In pure C, this results in the error:
error C2084: function 'void __cdecl f(void )' already has a body
.
But in Pure C++, it will compile without errors.
Overloading functions (C++ only, C has no overloading)
You overload a function name f by declaring more than one function with the name f in the same scope. The declarations of f must differ from each other by the types and/or the number of arguments in the argument list. When you call an overloaded function named f, the correct function is selected by comparing the argument list of the function call with the parameter list of each of the overloaded candidate functions with the name f.
example:
output:
More terminology (C, not C++): a prototype for a function declares the types of its arguments. Otherwise the function does not have a prototype.
Declarations that aren't prototypes are holdovers from pre-ANSI C, from the days of K&R C. The only reason to use an old-style declaration is to maintain binary compatibility with old code. For example, in Gtk 2 there is a function declaration without a prototype -- it is there by accident, but it can't be removed without breaking binaries. The C99 standard comments:
Recommendation: I suggest compiling all C code in GCC/Clang with
-Wstrict-prototypes
and-Wmissing-prototypes
, in addition to the usual-Wall -Wextra
.What happens
The declaration disagrees with the function body! This is actually a compile time error, and it's because you can't have a
float
argument in a function without a prototype. The reason you can't use afloat
in an unprototyped function is because when you call such a function, all of the arguments get promoted using certain default promotions. Here's a fixed example:In this program,
a
is promoted toint
1 andc
is promoted todouble
. So the definition forf()
has to be:See C99 6.7.6 paragraph 15,
Answer 1
When you call
f()
, the parameters get promoted using the default promotions. If the promoted types match the actual parameter types forf()
, then all is good. If they don't match, it will probably compile but you will definitely get undefined behavior."Undefined behavior" is spec-speak for "we make no guarantees about what will happen." Maybe your program will crash, maybe it will work fine, maybe it will invite your in-laws over for dinner.
There are two ways to get diagnostics at compile-time. If you have a sophisticated compiler with cross-module static analysis capabilities, then you will probably get an error message. You can also get messages for un-prototyped function declarations with GCC, using
-Wstrict-prototypes
-- which I recommend turning on in all your projects (except for files which use Gtk 2).Answer 2
It shouldn't compile.
Exceptions
There are actually two cases in which function arguments are allowed to disagree with the function definition.
It is okay to pass
char *
to a function that expectsvoid *
, and vice versa.It is okay to pass a signed integer type to a function that expects the unsigned version of that type, or vice versa, as long as the value is representable in both types (i.e., it is not negative, and not out of range of the signed type).
Footnotes
1: It is possible that
char
promotes tounsigned int
, but this is very uncommon.In C++, f() and f(void) is same
In C, they are different and any number of arguments can be passed while calling f() function but no argument can be passed in f(void)