
Available under Creative Commons-ShareAlike 4.0 International License.
Consider:
Example 14.6: C++ source code: Infinite loop
counter = 0; while (counter < 5) { cout « "\nI love ice cream!"; }
Missing the flag update usually causes an Infinite loop.
- 1387 reads