Tag: How to use DO WHILE Loop in C Language

DO WHILE Loop in C Language

DO WHILE Loop in C Language: (1) Unlike the for and while loops, the do-while is an exit-controlled loop i.e. it evaluates its test-expression at the bottom of the loop after executing its loop-body statements. This means that a do-while loop always executes at least once. In other two loops for and while, the test-expression is …