Synopsis: | Use a "for" loop construction for an infinite loop. |
Language: | C |
Severity Level: | 8 |
Category: | STATEMENTS |
Description: |
The following construction is recommended for an infinite loop: Example: for (;;) { ... } The motivation for this is that it standardizes a construct conventionally achieved in many different ways. |