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?
foois to return anint. This is true if theifstatement holds. Otherwise what value is to be returned byfoo? – Ed Heal Mar 16 '12 at 17:55if(x = 5)and other common mistakes that are syntactically legal. – Nicol Bolas Mar 16 '12 at 18:01