C - Loop Control Statements
Which of the following correctly demonstrates the use of break inside a while loop in C?
Which of the following correctly demonstrates the use of break inside a while loop in C?
break statement is used alone to exit loops immediately.if(condition) break; inside the loop. Options B, C, and D use invalid syntax.if(condition) break; [OK]15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions