C - Loop Control Statements
You want to print all numbers from 1 to 10 except multiples of 3 using a loop in C. Which loop control statement should you use and where?
continue; skips the current iteration, so placing it when number is multiple of 3 skips printing those numbers.15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions