do {
// body of loop;
}
while (condition);
do {
// codes;
}
while (testExpression);
while (/*condition*/) {
//implementation
}
while (true) {
cout << "hello" << endl;
}
while(condition)
{
statement(s);
}
// Do while loop
// C++ Program to print numbers from 1 to 5
#include <iostream>
using namespace std;
int main() {
int i = 6;
// while loop from 1 to 5
while (i <= 5) {
cout << i << endl;
i++;
}
return 0;
}
int i = 0;
while (i < 5) {
cout << i << "
";
i++;
}
while (x){ ... }
// Executes a statement repeatedly until the value of the condition expression
//becomes false. The test takes place after each iteration.
do {
//statement
} while(condition);
//Executes a statement repeatedly, until the value of condition becomes false.
//The test takes place before each iteration
while(condition) {
statement
}
while
Code Example |
---|
Cpp :: vector reverse function in c++ |
Cpp :: C++ break and continue |
Cpp :: index string c++ |
Cpp :: size of pointer array |
Cpp :: read and write file in c++ |
Cpp :: swapping of two numbers |
Cpp :: C++ structure (Struct) |
Cpp :: stl sort in c++ |
Cpp :: C++ String Length Example |
Cpp :: c++ fstream |
Cpp :: c++ keyboard input |
Cpp :: c++ public class syntax |
Cpp :: c++ array size |
Cpp :: c++ print binary treenode |
Cpp :: stack implementation using class in c++ |
Cpp :: How to create files in C++ |
Cpp :: insert a character into a string c++ |
Cpp :: number of digits in int c++ |
Cpp :: c++ struct |
Cpp :: C++ Limit of Integer |
Cpp :: how to calculate bitwise xor c++ |
Cpp :: intersection.cpp |
Cpp :: c++ if example |
Cpp :: reversing a string in c++ |
Cpp :: cin exceptions c++ |
Cpp :: maxheap cpp stl |
Cpp :: log base 2 in c++ |
Cpp :: char to int in c++ |
Cpp :: exponent of x using c c++ |
Cpp :: How to use jwt in login api in node js |