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 :: srand() c++ |
Cpp :: c++ functions |
Cpp :: max of two elements c++ |
Cpp :: chrono start time in c++ |
Cpp :: cpp list |
Cpp :: how to round to nearest whole number unity |
Cpp :: take pieces of a string in c++ |
Cpp :: c++ construnctor |
Cpp :: print vector of vector c++ |
Cpp :: struct and array in c++ |
Cpp :: conditional variable c++ |
Cpp :: read text from file c++ |
Cpp :: how to make copy constructor in c++ |
Cpp :: return array from function c++ |
Cpp :: cpp Sieve algorithm |
Cpp :: push_back struct c++ |
Cpp :: c++ first letter of string |
Cpp :: c++ tokenize string |
Cpp :: inbuilt function to convert decimal to binary in c++ |
Cpp :: c++ get type name of object |
Cpp :: tolower funciton in cpp |
Cpp :: how to initialize array with new in c++ |
Cpp :: for loop c++ |
Cpp :: c++ lambda |
Cpp :: sorting vector elements c++ |
Cpp :: remove space in string c++ |
Cpp :: Palindrome String solution in c++ |
Cpp :: sort array c++ |
Cpp :: c++ string split |
Cpp :: sort vector from largest to smallest |