In C++, what is the difference between the 'while' loop and the 'do-while' loop?
A. 'while' loop always executes at least once, 'do-while' loop may not
B. 'while' loop always executes at least once, 'do-while' loop always does
C. 'while' loop checks condition before execution, 'do-while' loop checks after execution
D. None of the above
Answer: Option C

Join The Discussion