Break and Continue Statement in C with Example
Break and Continue statements in C are looping control statements. Based on the break and continue statement loop can be broken or skipped break and continue both are keywords. break – Uses to break the loop and also use with a switch to break the switch case. continue– skip the current execution of the loop … Read more