Other Types of Loops in C
Learn about the while loop, and the do-while loop.
We'll cover the following...
The while
loop
The while
loop is another looping construct that you might find more appropriate than a for
loop under some circumstances. The while
loop looks like this:
Press + to interact
while (conditional_expression) {// Program statements here}
Just like a for
loop, the while
loop will first check the value of the ...