What is an infinite loop in C-Programming?
A loop executing repeatedly as the loop-expression always evaluates to true such as
while(0 == 0) {
}