Do while and while code example

Example 1: while loop 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

var i=1;
while(i<=10){
document.write(i + "<br>");
i++;}

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:

C Example