while loop in c

The while loop statement always appears at the beginning or end of a loop. The easiest type of loop that uses while is called the while loop Format of while loop while (condition){ block of one or more C statements; } The condition is a relational test that is exactly like the relational test condition … Read more