The infinite loop is also used to program loops with non-easily-deterministically end-of-loop conditions.
You write an infinite loop, such as for (;;) {statements}, and break out of the loop with the break statement when ready to terminate.
The keyword "break" will immediately terminate the enclosing loop. Otherwise using conditions in the loop will terminate the loop once the condition becomes false. eg int i = 0; int b =0; for(i ; i...
Quite simply: a circular function in the programming, not going anywhere.
If a game is hard you wanna know what i do? go to my favorite game site WWW.Arcadeprehacks.com <-------------Hacked games
When the while-condition first becomes false.
while (1) puts ("press Ctrl+C");