What is the meaning of the following loop? for(;;) { System.out.println("This is printed");}
Answers
Answered by
7
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 you get this :)
Similar questions