7.11 — Halts (exiting your program early)
The last category of flow control statement we’ll cover is the halt. A is a flow control statement that terminates the program. In C++, halts are implemented as functions (rather than keywords), so our halt statements will be function calls. Let’s take a brief detour, and recap what happens when …