answersLogoWhite

0

Break is used to exit the closest loop. Continue will cause the program to go to the beginning of the loop.

for(int x=0;x<10;x++)

{

//continue;

for(int y=0;y<10;y++)

{

break;

}

}

The break statement causes the inner loop to stop at the first iteration. If the continue statement was uncommented, the inner loop would never be executed because the program would jump back to the beginning(until x = 10 of course).

User Avatar

Wiki User

14y ago

Still curious? Ask our experts.

Chat with our AI personalities

TaigaTaiga
Every great hero faces trials, and you—yes, YOU—are no exception!
Chat with Taiga
DevinDevin
I've poured enough drinks to know that people don't always want advice—they just want to talk.
Chat with Devin
ViviVivi
Your ride-or-die bestie who's seen you through every high and low.
Chat with Vivi
More answers

in a for, do or while loop or switchbreak causes a jump out of the loop or switch.

continue causes a jump to the test part of a for, do or while loop.

User Avatar

Wiki User

14y ago
User Avatar

The break statement causes execution to leave the current containing loop and transfer control to the statement following the loop terminus. The continue statement causes transfer of control to the terminus, causing the next iteration of the loop to be processed, or the loop to be terminated if there are no more iterations.

User Avatar

Wiki User

14y ago
User Avatar

Break command is used to terminate flow of control in a loop or switch statement but continue statement is used to terminate the current loop and follow the loop path again but with next value of the loop.

In other words if break command is used in a loop then that loop is terminated and control is transferred to the statement written just after the loop, but if continue statement is used in a loop then that loop is supposed to be completed and is reinitialised with next value of the loop, control is transferred to the first statement of the loop with the value of loop variable changed.

User Avatar

Wiki User

14y ago
User Avatar

Break statement is used to transfer the control to outside the loop and switch... case , but continue statement is used to transfer the control to beginning of the loop.

User Avatar

Wiki User

13y ago
User Avatar

The break statement terminates the nearest enclosing loop or switch statement.

The continue statement starts a new iteration of the nearest enclosing loop.

User Avatar

Wiki User

8y ago
User Avatar

to terminate a loop.

User Avatar

Wiki User

13y ago
User Avatar

Add your answer:

Earn +20 pts
Q: What are break and continue statement in c language?
Write your answer...
Submit
Still have questions?
magnify glass
imp