The___________loop is a variant of while loop
Answers
Answered by
2
The do-while loop is a variant of while loop.
In this case the statements are executed first & then the condition is checked.
do
{
statement1;
statement2;
}
while(condition);
Similar questions