Computer Science, asked by annu9565, 1 month ago

what is the meaning of following loop?
for(;;)
{
System.out.println("This is printed");
}​

Answers

Answered by vaibhavbhatt718
1

Answer:

When you use this loop(construction) you will get the S.O.P statement for infinite number of time on your terminal window.

Explanation:

Reason: the loop construction is for infinite loop.

hope its helpful

Answered by tapaswinidash3715
1

Answer:

It is a infinite loop as it does not have a condition to terminate the loop hence it is a infinite loop

.

Similar questions