Do-While loop
do {
//code;
//code;
}while(condition)
Do-While loop
do {
//code;
//code;
}while(condition)
Iterate with Do While Loops Javascript
var myArray = [];
var i = 10;
do { // The do while loop will always run atleast once before checking the condtion. This will return false and break out of the loop.
myArray.push(i);
i++;
} while (i < 5)
console.log(i, myArray);
While
FunctionPointerExample objFunctionPointerExample = new FunctionPointerExample();
//Call GetName function using TestDelegate
TestDelegate objDelegate1 = new TestDelegate(objFunctionPointerExample.GetName);
objDelegate1.Invoke("Mukesh Kumar");
do-while in c
#include <stdio.h>
int main()
{
int j=0;
do
{
printf("Value of variable j is: %dn", j);
j++;
}while (j<=3);
return 0;
}
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
"""
Do..While Loop
A do...while loop is similar to a while loop, except that a do...while loop is guaranteed to execute at least one time.
Syntax :
do {
// Statements
}while(Boolean_expression);
Notice that the Boolean expression appears at the end of the loop, so the statements in the loop execute once before the Boolean is tested.
If the Boolean expression is true, the control jumps back up to do statement, and the statements in the loop execute again. This process repeats until the Boolean expression is false.
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us