C में 'do...while' लूप का उद्देश्य क्या है?
What is the purpose of the `do…while` loop in C?
A
It is used for iteration.
B
It is used for decision-making.
C
It ensures that a block of code is executed at least once.
D
It is used to break out of a loop.
Explanation
Correct Answer: C) It ensures that a block of code is executed at least once.