How do you Make A Repeat-Until Loop in C++?

c++, for-loop, loops, while-loop

Solution

do
{
  //  whatever
} while ( !condition );

Problem

How do you Make A Repeat-Until Loop in C++? As opposed to a standard While or For loop. I need to check the condition at the end of each iteration, rather than at the beginning.

Original source