InterviewSolution
Saved Bookmarks
| 1. |
What is the name of the control structure used to stop any loop prematurely and only exit out of the loop, not affecting the running of the rest of the program?(a) The continue statement(b) The break statement(c) The exit statement(d) The purge statementThis question was posed to me in an international level competition.This interesting question is from Control Structures in section Arduino Programming of Arduino |
|
Answer» The correct answer is (b) The BREAK statement |
|