Which of the following is correct with respect to “Jump Statements” in C?
(A) goto
(B) continue
(C) break
(D) return
(E) All of the above.
Answer: (E)
Explanation: As per C standard, “A jump statement causes an unconditional jump to another place”. So if we see carefully, all “goto”, “continue”, “break” and “return” makes the program control jump unconditionally from one place to another. That’s why correct answer is E.
Quiz of this Question
Attention reader! Don’t stop learning now. Get hold of all the important C++ Foundation and STL concepts with the C++ Foundation and STL courses at a student-friendly price and become industry ready.