Which of the following is an unconditional control structure?
Below are a few types of Unconditional Control Structures
The “break” Statement
A break statement terminates the execution of the loop and the control is transferred to the statement immediately following the loop.
Syntax : Jump-statement; break;
The “continue” Statement
The continue statement is used to bypass the remainder of the current pass through a loop.
Syntax : Jump-statement; Continue;
The “goto” Statement
C supports the “goto” statement to branch unconditionally from one point to another in the program.
Syntax :
goto label;
.............
.............
.............
label:
statement;
Return Statement :
The return statement terminates the execution of a function and returns control to the calling function. Execution resumes in the calling function at the point immediately following the call.
Syntax : Jump-statement: return expression;
Therefore answer is goto statement i.e, Option 4

