Computer Science, asked by sanahusna5, 4 months ago

compare break and continue statement​

Answers

Answered by Anonymous
1

Answer:

Both “break” and “continue” are the ‘jump’ statements, that transfer control of the program to another part of the program. The main difference between break and continue is that break is used for immediate termination of loop. On the other hand, ‘continue’ terminate the current iteration and resumes the control to the next iteration of the loop.

Explanation:

Answered by competitor64
1

Explanation:

continue statement is going on without any comma and full stop.

break state have some smal. break btween the stement,

Similar questions