Infinite Loop
Learn about infinite loops in C++.
We'll cover the following...
Introduction
Sometimes, erroneously, we end up writing a piece of code in which a loop condition never evaluates to false and the loop block keeps executing repeatedly. Such types of loops are known as infinite loops.
The infinite loop keeps executing repeatedly and never terminates.
...