What is an endless loop?

4 years ago
C Programming

An endless loop can mean two things. One is that it was designed to loop continuously until the condition within the loop is met, after which a break function would cause the program to step out of the loop. Another idea of an endless loop is when an incorrect loop condition was written, causing the loop to run erroneously forever. Endless loops are oftentimes referred to as infinite loops.

0
Sanisha Maharjan
Jan 20, 2022
More related questions

Questions Bank

View all Questions