16. Breaking in and out of Looped Code
In This Chapter
• Taking a break
• Continuing to work
This chapter doesn’t teach you how to use another kind of loop. Instead, this chapter extends the information you learned in the last two chapters. You have ways available to control the while
loop in addition to a relational test, and you can change the way a for
loop operates via means other than the counter variable.
The break
and continue
statements let you control loops for those special occasions when you want to quit a loop early or repeat a loop sooner than it would normally repeat.
Take a break
The break
statement rarely, if ever, appears on a line by itself. Typically, break
appears in the body of an if
statement. The reason for this will ...
Get C Programming Absolute Beginner’s Guide, Third Edition now with the O’Reilly learning platform.
O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.