do while example
Example 1: do whie loop
do{
----
} while(condition);
Example 2: c make loop
// Print numbers from 1 to 5
#include
int main()
{
int i = 1;
while (i <= 5)
{
printf("%d\n", i);
++i;
}
return 0;
}
Example 3: whiel loop in C
while (testExpression)
{
// statements inside the body of the loop
}