How many times the following loop
will rotate
for (int a = 0; a <= 20; a+=2)
{ a ++;
a --; }
Answers
Answered by
0
Answer:
the loop will rotate 40 times
Answered by
0
Answer:
the loop rotate 40 times
Similar questions