Which keyword allows you to jump to a labeled statement in C?
Explanation
The correct answer is (c) goto.
Explanation
In C programming, the goto keyword is known as a jump statement. It provides the ability to perform an unconditional jump from the goto statement to a labeled statement within the same function.
Conceptual Mathematical Model
If we define the program execution flow as a sequence of statements S1,S2,...,Sn, where SL is a labeled statement:
Executing a standard sequential flow follows:
Next(Si)=Si+1
However, by executing goto L, the program flow is redirected:
Next(goto L)=SL
This demonstrates the non-linear transfer of control that the goto keyword provides in the execution stack.