rewrite the following using for loop
Attachments:
Answers
Answered by
1
Explanation:
The statement - while (true) is an infinite loop.
To make an infinite loop using for, try writing this -
for(;;)
This will make the for loop infinite.
Similar questions