Aka vicious circle. An infinite loop which may or may not appear to have and endpoint while the cycle is in execution. Illustrated by the following code:

while(1) {
// Do something complicated, but non-fatal.
somethingComplex();
}

Log in or register to write something here or to contact authors.