What will the value of the result variable be after the code segment below has been run.
int number2 = 79;
int result = 55;
if( number2 <= 29 )
{
result *= number2 ;
}
When the segment of the code is run, the compiler will debug nothing for the value of result.
Comments
Leave a comment