Hacker News new | ask | show | jobs
by maxlybbert 2752 days ago
I’m sure that rule comes from the time when “void” didn’t exist, so functions were defined to return int, but nobody ever bothered to actually return anything.
2 comments

It's definitely there to retain some backwards compatibility with existing K&R C programs. Though it does still somewhat exist in the C11 standards.

From 6.9.1 - "If the } that terminates a function is reached, and the value of the function call is used by the caller, the behavior is undefined"

Though 6.8.6.4 also says "A return statement without an expression shall only appear in a function whose return type is void"

So it seems like a non-void function hitting the end of the block without a return statement is allowed (provided the value isn't used). But having a "return;" in that function would not be in C11.

Classic example is printf. It returns an error, but nobody checks it.