Write C (or C++ if you like) functions that evaluate to 1 when thegiven conditions are true, and to 0 when they are false. The following are thefour required prototypes, and the conditions code example
Example: 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.