The document discusses three types of jumping statements in C language: break, continue, and goto.
1) The break statement terminates the nearest enclosing loop or switch statement and transfers execution to the statement following the terminated statement.
2) The continue statement skips the rest of the current loop iteration and transfers control to the loop check.
3) The goto statement unconditionally transfers control to the labeled statement. It is useful for branching within nested loops when a break statement cannot exit properly.