While Loop in C

While loops are a condition-controlled loop, means they continue repeating the statements, until some condition is met. While loop, first checks the condition, if the condition is true then execute the statements. After statement execution, again it tests the condition, if true, repeat the statements. It repeats until the boolean expression is false, if the…

Read More ยป