Multiple choice

'goto' statement is used in C programming to __________.

  1. jump the control to specific location o screen

  2. hold the control for user input

  3. end the program execution

  4. restart the execution from beginning

  5. jump the control up or down at its label

Reveal answer Fill a bubble to check yourself
E Correct answer
Explanation

The goto statement is used to jump the control in a program to its label in the function irrespective of its place in the sequence of coding.