reddensoft
Banned-Spam
- Oct 7, 2022
- 84
- 9
If ((a > b) && (a <= c))
a = a + 1;
else
c = c+1;
What is the result after execution of the following code if a is 10, b is 5, and c is 10?
a = a + 1;
else
c = c+1;
What is the result after execution of the following code if a is 10, b is 5, and c is 10?