Examlex

Solved

The Statement: If (A >= B) A++; Else B--;

question 9

True/False

The statement:
if (a >= b) a++; else b--;
will do the same thing as the statement:
if (a < b) b--; else a++;.


Definitions:

Related Questions