Computer Science, asked by ycgayathri15, 1 year ago

rewrite the following using for loop​

Attachments:

Answers

Answered by vidit05gupta
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