What is continue statement? Explain with suitable example
Answers
Answered by
3
Answer:
The continue statement is used inside loops. When a continue statement is encountered inside a loop, control jumps to the beginning of the loop for next iteration, skipping the execution of statements inside the body of loop for the current iteration
Answered by
0
Answer:
The continue statement in C programming works somewhat like the break statement. Instead of forcing termination, it forces the next iteration of the loop to take place, skipping any code in between. ... For the while and do... while loops, continue statement causes the program control to pass to the conditional tests.
Explanation:
......... hop it help you❤
Similar questions