Google News
logo
C-Language - Interview Questions
What is the Difference between while and Do-While Loops in C ?
While loop is executed only when given condition is true.
Whereas, do-while loop is executed for first time irrespective of the condition. After executing while loop for first time, then condition is checked.
Advertisement