Which of these is true about do while statements in C++?
The do while statement is used for selection b. The do while statement is used only when a list is involved
The do while stalement must execute at least once before checking ita condition is meet d. The do while
statement does not have a conditional statemeni.​

Respuesta :

tonb

Answer:

c. The do while stalement must execute at least once before checking if a condition is met

Explanation:

The condition is at the end, ie.,

do {

... stuff ...

} while (condition)

So it will be executed at least once, and the condition determines if it will execute again.