One of the simplest and most commonly used loops is while.
while (condition)
{
loop body;
}
In the code above example, condition is any expression that returns a Boolean result – true or false. It determines how long the loop body will be repeated and is called the loop condition. In this example the loop body is the programming code executed at each iteration of the loop, i.e. whenever the input condition is true.
|
Currently, we are working on other servers, but soon we update our website with new content. So, stay tuned we are back soon with new content.