C++ Loop Types
C++ Loop Types
C++ Loop Types
There may be a situation, when you need to execute a block of code several
number of times. In general statements are executed sequentially: The first
statement in a function is executed first, followed by the second, and so on.
Programming languages provide various control structures that allow for more
complicated execution paths.
C++ programming language provides the following types of loop to handle looping
requirements. Click the following links to check their detail.
https://www.tutorialspoint.com/cplusplus/cpp_loop_types.htm 1/3
1/1/2017 C++ Loop Types
do...while loop Like a while statement, except that it tests the condition at
the end of the loop body
nested loops You can use one or more loop inside any another while, for
or do..while loop.
C++ supports the following control statements. Click the following links to check
their detail.
continue Causes the loop to skip the remainder of its body and
immediately retest its condition prior to reiterating.
statement
https://www.tutorialspoint.com/cplusplus/cpp_loop_types.htm 2/3
1/1/2017 C++ Loop Types
#include <iostream>
using namespace std;
int main () {
for( ; ; ) {
printf("This loop will run forever.\n");
}
return 0;
}
When the conditional expression is absent, it is assumed to be true. You may have
an initialization and increment expression, but C++ programmers more commonly
use the for(;;) construct to signify an infinite loop.
Advertisements
https://www.tutorialspoint.com/cplusplus/cpp_loop_types.htm 3/3