Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Why this piece of code compiles?

#include <iostream>

int foo(int x)
{
   if(x == 10)
     return x*10;
}

int main()
{
int a;
std::cin>>a;
std::cout<<foo(a)<<'\n';
}

The compiler shouldn't give me an error like "not all code paths returns a value"? What happens/returns my function when x isn't equal to ten?

share|improve this question
Your function foo is to return an int. This is true if the if statement holds. Otherwise what value is to be returned by foo? – Ed Heal Mar 16 '12 at 17:55
That's what he's asking; what gets returned. – Nicol Bolas Mar 16 '12 at 17:56
I think he's asking why it does compile, when it doesn't always obviously return a value. – cHao Mar 16 '12 at 17:57
1  
@NicolBolas: Don't avoid the compiler, avoid compiling without warn-flags! – bitmask Mar 16 '12 at 17:59
1  
@bitmask: That kind of flag should be on by default. Just like warnings about if(x = 5) and other common mistakes that are syntactically legal. – Nicol Bolas Mar 16 '12 at 18:01
show 14 more comments

2 Answers

up vote 10 down vote accepted

The result is undefined, so the compiler is free to choose -- you probably get what happens to sit at the appropriate stack address where the caller expects the result. Activate compiler warnings, and your compiler will inform you about your omission.

share|improve this answer
Calling a function that should return something but doesn't, can cause a beautiful crash on some systems. – karlphillip Mar 16 '12 at 17:57
1  
@karlphillip: Yes, because the compiler is legally allowed to burn your house down or make dragons fly out your nose. That's why I added the word probably :) – bitmask Mar 16 '12 at 17:59
I noticed :) I added a comment just to point out how bad can this practice be. Nice answer, by the way. – karlphillip Mar 16 '12 at 18:00
Ok. But this seems strange because i remember that the compiler should give me an error, not a simple warning. I'm surprised that give me just a warning. (btw, i've tried g++ and msvc++. Both are behaving the same way). Probabily the c++ standard says that the result is undefined :O ) – MasterChief Mar 16 '12 at 18:06
1  
@MasterChief: In Java, C# and such as that, this would always be an error. In C and C++, not so much. Some compilers will throw an error, most just a warning. The compiler typically assumes you know what you're doing, though, so it won't get in your way unless you're doing something that's blatantly against the rules. And it's not illegal to ask for trouble. :) – cHao Mar 16 '12 at 18:12
show 3 more comments

The compiler is not required to give you an error in this circumstance. Many will, some will only issue warnings. Some apparently won't notice.

This is because it's possible that your code ensures outside of this function that the condition will always be true. Therefore, it isn't necessarily bad (though it almost always is, which is why most compilers will issue at least a warning).

The specification will state that the result of exiting a function that should return a value but doesn't is undefined behavior. A value may be returned. Or the program might crash. Or anything might happen. It's undefined.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.