C Plus Plus while
From GMpedia.org Wiki
The while loop executes a statement over and over as long as the condition written in the while statement itself is ture.
while(<statement>)
{
<expression>
}
The while loop executes a statement over and over as long as the condition written in the while statement itself is ture.
while(<statement>)
{
<expression>
}