I've googled and just can't seem to find the answer to this simple question.
Working on a legacy code base (ported to Linux recently, and slowly updating to a new compiler) and I see a lot of
int myfunction(...)
{
// no return...
}
I know the implicit return TYPE of a function is int, but what is the implicit return VALUE when no return is specified. I've tested and gotten 0, but that's only with gcc. Is this compiler specific or is it standard defined to 0?
EDIT: 12/2017 Adjusted accepted answer based upon it referencing a more recent version of the standard.
It may always be zero in that function, but on most architectures (certainly x86) the return statement moves the contents of a specific register to a specific place on the stack which the caller will retrieve and use as its return function.
The return statement will place the variable passed to it in that location so that it'll be a different value. My experience with not placing a specific return statement is that its fairly random what gets returned and you can't rely on it being the same thing.
That's simply undefined behaviour; if you don't populate the return area (which for example is generally eax/rax on x86 family processors), it'll have the value last set up through some side-effect in your function.
See Is a return statement mandatory for C++ functions that do not return void? which is basically a duplicate of this question (except that it's tagged as C++).
I'm certain that it is undefined behaviour for a function whose return type is not
void
to omit areturn
statement. In C99 there is an exception formain
, where if thereturn
statement is omitted, it is assumed to return 0 implicitly, but this doesn't apply to any other function.It may work on a specific platform/compiler combination but you should never rely on such specifics. Using any kind of undefined behaviour in your code makes it unportable. It is common to see undefined behaviour in legacy code though.
The return statement is never mandatory at the end of a function, even if the function return type is not
void
. No diagnostic is required and it is not undefined behavior.Example (defined behavior):
But reading the return value of
foo
is undefined behavior:From the C Standard:
The
main
function is an exception to this rule as if the}
is reached inmain
it is equivalent as if there was areturn 0;
statement.If the
return
statements consistently do not return a value, the function is best converted to, and declared as, returningvoid
:If there are some some
return expr;
and somereturn;
statements in the function, then you need to decide which is the better behaviour, and make them consistent — either always return a value and leave the type asint
or never return a value and change the type tovoid
.Note that you'll need to declare functions modified to return
void
(in a header, unless they are — or should be —static
and hidden in a single source file) since the default return type (assumed return type) ofint
is no longer valid.From the '89 standard as quoted in the new testament:
That standard usually expresses the on-the-ground behavior of pre-existing implementations.