written 5.7 years ago by | • modified 5.7 years ago |
Subject : Structured Programming Approach
Title : Control Structures
Difficulty : Medium
written 5.7 years ago by | • modified 5.7 years ago |
Subject : Structured Programming Approach
Title : Control Structures
Difficulty : Medium
written 5.7 years ago by | • modified 5.7 years ago |
continue statement: The continue statement also neglects the statements after it in the Loop and transfers the control back to the starting of the loop for next iteration.*operation of continue statement in a for loop.
a) *operation of continue statement in a for loop.
b) *operation of continue statement in a while loop
c) *operation of continue statements in a do-while loop
Break statement: The break statement neglects the statement after itin the loop and transfers thecontrol outside the loop
a) *operation of break statement in a for loop
b) *operation of break statement in a while loop
c) *operation of break statement in a do-while loop