Infinite loop and how can it be useful?

Answer:
With an embedded microprocessor, there is no good reason to 'end the program'. So, the running guts of the main would live inside an infinite loop. main( ) { initialize... for( ; ; ) { Just keep going over the same stuff... } }
First answer by ID2908133102. Last edit by ID2908133102. Question popularity: 2 [recommend question].