C - Loops
How can you modify a
while loop to skip printing the number 5 but print numbers 1 to 7?while loop to skip printing the number 5 but print numbers 1 to 7?continue to skip current loop iteration.if (i == 5) continue; inside the loop. uses continue correctly; break stops loop early, others incorrect.if (i == 5) continue; inside the loop. -> Option A15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions