Showing posts with label do while loop in c. Show all posts
Showing posts with label do while loop in c. Show all posts

Thursday, 17 October 2013

Do While In C++

Do While C: In this C tutorial for beginners, we are going to discuss the third repetition structure known as do…while loop in c. In for loop, initially the loop condition is checked and then the statement is executed according to the loop condition. But if you want to execute the statement initially(first) and then check the loop condition then we use do…while loop. Syntax: do       statement;while (expression); Statement...