General form of the while loop
While[condition])
{
Statements that get looped
}
With while loops be careful not to end up with an infinite loop.
It is advisable to check the block within the while loop has an effect on the condition of the while loop.
#c #programming #while #loops