while Statement in C
The while-loop is an entry-controlled loop in which first the condition is checked, and if it is True then the statements are executed. However, if the condition is False, the control is transferred to the statement immediately after the body of loop. The condition can be any constant, variable or expression that evaluates to True … Read more