Right! We use exit() to exit the program and ignore the rest of the code.
exit()
It requires 0 as an argument, just like we return 0 when exiting normally. We also need to include the <cstdlib> library.
0
<cstdlib>
Let's give it another try!