Tag: Use of WHILE Loop in C Language

WHILE Loop in C Language

WHILE Loop in C Language: (1) The while statement executes a block of code repeatedly as long as the control condition of the loop is true. The control condition of the while loop is executed before any statement inside the loop is executed. (2) Sample C language code and its output, as shown: #include <stdio.h>#include <conio.h>//Table …