Computer Science, asked by vandanaverma973, 6 months ago

For (i=2; i=8; i++) print i

Answers

Answered by anonymouslygreat
0

Answer:

This will print 8 forever.

Explanation:

i was 2 earlier, then it became 8. When we print i, i is 8. It keeps looping. This is a forever loop.

Similar questions