Answers for "c++ if and statement"

C++
4

elseif c++

if( a == 10 ) {
      cout << "Value of a is 10" << endl;
   } else if( a == 20 ) {
      // if else if condition is true
      cout << "Value of a is 20" << endl;
   }
Posted by: Guest on June-11-2020
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

Browse Popular Code Answers by Language