213k views
1 vote
You're programming an infinite loop. What must you include in your code to prevent crashes?

User Crysxd
by
6.5k points

2 Answers

2 votes

You have to put repeat

User Azimuth
by
6.6k points
2 votes

Usage of delay function in the code to prevent crashes when programming an infinite loop.

Explanation:

Nothing bad happens due to an infinite loop when it releases all the allocated memory before the loop ends. The issues arises when an infinite loop consumes resources inside the loop or creating a new memory allocation inside the loop. The code need to written in such a manner that when a loop does not exist in a certain time the error must be thrown to handle the infinite loop.

User Dan Milon
by
6.6k points