7.- THE JUDGMENT
CONTINUES
The CONTINUE statement is similar to the BREAK with
the difference that instead of violently ending a loop, it
ends with the completion of a particular iteration and
allowing the program to continue with the next one.
9.- THE EXIT FUNCTION ()
The EXIT () function has a much more drastic operation than the
previous ones, instead of skipping an iteration or abandoning a
program loop, it abandons directly the program itself, terminating it. It
also performs a series of useful operations such as closing any file the
program has opened, emptying the output buffers, etc.