The ______ statement allows us to jump to a specific point in the code, though it's generally discouraged due to readability concerns.

  • Break
  • Continue
  • Goto
  • Return
The "goto" statement is used to transfer control to a specific labeled section of code. However, it's generally discouraged in modern programming because it can lead to unreadable and hard-to-maintain code. Structured programming practices promote the use of more structured control flow constructs like loops and conditional statements.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *