Tag: How to use Continue Statement in C

Continue Statement in C Language

Continue Statement in C Language: (1) The continue is another jump statement like the break statement as both the statements skip over a part of the code. But the continue statement is somewhat different from the break. Instead of forcing termination, it forces the next iteration of the loop to take place, skipping any code in …