The while statement runs the body as long as the condition given evaluates to 1 ("true") otherwise it'll exit.
http://www.bullywiihacks.com/t3962-
Example
- Code:
while(condition)
{
keepDoingThis();
}
http://www.bullywiihacks.com/t3962-
Example
- Code:
counter = 0;
while(counter < 100)
{
counter = counter + 1;
}