Completion requirements
The 'for' loop is more compact than the 'while' and 'do' loops and automatically updates the loop counter at the end of each iteration. Both 'for' and 'while' loops are designed for different situations. You'll learn more about when to use each later.
15. End of Chapter
Answer:
Yes.
End of Chapter
The phrase for( ; ; )
is the same as while( true )
. Sometimes people do this, although it is not very clear and should be avoided.
That's all for this chapter. Look at the following topics for a while. Click on a subject for more information.
- loop, three conditions Three things that all loops must do.
- for statement, syntax Syntax of the
for
statement. - loop, top-driven Top-driven loops.
- loop, counting down Counting downward with a for loop.
- for statement, omitted change Omitting the change part of a for loop
- for statement, omitted test Omitting the test part of a for loop