Mention de diferences between Dowhile and RepeatUntil Mentio
Mention de diferences between \"Do-while\" and \"Repeat-Until\"
Mention de diferences between \"Do-while\" and \"Repeat-Until\"
Solution
In C there be a do while loop and pascal\'s equivalent is the repeat until loop, except there is a small dissimilarity between the two, while both structures will iterate as a minimum once and check whether they require to do the loop another time only in the end, in pascal you write the condition that require to met to terminate the loop REPEAT UNTIL in C you write the condition that requires to be met to carry on the loop DO WHILE.
