Answer:
c. goto....label:
Explanation:
goto....label: is used to jump to other section of the program.It is an unconditional jump statement.It is used to jump anywhere in the program.
continue statement is used in loops it executes the next iteration of the loop.
break statement is also used in loops and it brings the control out of the loop.
else is used with if statements.