c language example of while with variable conditions
Example: whiel loop in C
while (testExpression)
{
// statements inside the body of the loop
}
while (testExpression)
{
// statements inside the body of the loop
}