while ( expression ) { statement; }
int main() { int x = 0; while ( x < 5 ) { // condition // loop body: x = x + 1; } return 0; }