Sep 11, 2024
break and continue statements in C programming to alter the normal flow of loops.i = 1 to i = 5 prints values.break after print results in only 1 being printed.i == 3.1 and 2 because loop terminates on 3.break with continue in previous loop.1, 2, 4, 5 (skips 3).<= 0 and skip odd numbers.number % 2 != 0.4 prints 4, input 7 skips, input -3 terminates the loop.