int a=5 , b = 6;
while(a<=b)
{
b++;
a--;
}
Predict the output of the above loop.
Answers
Answered by
0
Answer:
No output will show because there are no print statements.
Similar questions