while and do while code example

Example 1: while vs do while

Main difference while loop executes while
condition is true. But do while executes
at least one time regardless.

Example 2: while loop

#include<stdio.h>

int main()
{
    printf("\n\n\t\tStudytonight - Best place to learn\n\n\n");

    /* 
        always declare the variables before using them 
    */
    int i = 0;  // declaration and initialization at the same time

    printf("\nPrinting numbers using while loop from 0 to 9\n\n");

    /* 
        while i is less than 10 
    */
    while(i<10)
    {
        printf("%d\n",i);

        /* 
            Update i so the condition can be met eventually 
            to terminate the loop 
        */
        i++;    // same as i=i+1;
      }
    printf("\n\n\t\t\tCoding is Fun !\n\n\n");
    return 0;
}

Example 3: while

while True:
	print("A period of time.")
    # "we chatted for a while"
    print("Similar: time spell stretch stint")
    
    print("at the same time; meanwhile.")
    # "he starts to draw. talking for a while"
    
"""
CONJUCTION :D
"""

Tags: