Answers for "why does my if statement still run when the its not true c++"

1

why does my if statement still run when the its not true c++

If the condition is true, result is set to 1, so much is true.
But in the other case, the content of result is undefined - 
so it can be anything,
even allowing the compiler to modify it at will as part of an 
optimization. 
You should either initialize result at its declaration,or add an else 
branch where you set it to the alternative value.
Posted by: Guest on March-20-2020

Code answers related to "why does my if statement still run when the its not true c++"

Code answers related to "TypeScript"

Browse Popular Code Answers by Language