plz answer the question.....
Attachments:

Answers
Answered by
0
Answer:
loop is a repeating something
Answered by
0
While(true)
System.out.println("*") infinite loop
Answer
for(;;)
System.out.print("*");
for (initialization; test-condition; update)
for (;;) is an infinite loop because there is no test condition
To stop the loop by pressing Ctrl+C or a break statement in the body of the loop
Similar questions