Loop in C MCQs
Which of the following is the correct syntax for a for loop in C? Answer: a) for (initialization; condition; increment/decrement) Which of the following loops will execute at least once, even if the condition is false initially? Answer: c) do-while Which keyword is used to immediately terminate a loop in C? Answer: b) break Which…