Home »
MCQs »
C++ MCQs
Which of the following statement is used to quit the loop immediately?
93. Which of the following statement is used to quit the loop immediately?
- continue
- break
- while
- None of the above
Answer: B) break
Explanation:
The break statement is used to quit the loop immediately.