Home / Questions / What is an infinite loop? Write an infinite loop statement.
Explanatory Question

What is an infinite loop? Write an infinite loop statement.

👁 70 Views
📘 Detailed Answer
🕒 Easy to Read
Read the answer carefully and go through the related questions on the right side to improve your understanding of this topic.

Answer with Explanation

A loop which continues iterating indefinitely and never stops is termed as infinite loop. Below is an example of infinite loop:


for (;;)
    System.out.println("Infinite Loop");