Repetition Structure 03
Repetition Structure 03
Assignment 03
GADSE23.3-008
Diploma in Software Engineering
1. Prepare one page document to explain the difference between break keyword and
continue keyword. Explain with two suitable example codes
When a specific condition is met When you want to skip the current
and you want to exit the loop iteration of the loop based on
certain condition and continue
with the next iteration
Break statements uses switch and It does not use switch and label
label statement statement
Example Example
return=0; return=0;
} }
PAGE 1
PAGE 2