top of page
06 Control Structures
while (conditional)
Control Structure Comparison
The while loop will loop continuously, and infinitely, until the conditional expression inside the parenthesis, () becomes false. Something must change the tested variable, or the while loop will never exit. This could be in your code, such as an incremented variable, or an external condition, such as testing a sensor.
while(expression){
// statement(s)
}
expression: a (boolean) C statement that evaluates to true or false
bottom of page