Jumping statements in C and C++ Language. Here we will discuss Return, goto, break and continue statements.
Return statements are used with functions.
Goto statement is used to jump to some particular statement directly
Break is used inside loops to exit the loop
Continue statement is also used inside the loops to skip the current pass.