diff --git a/Loops/do while Structure/demonstrat.cpp b/Loops/do while Structure/demonstrat.cpp new file mode 100644 index 0000000..c45e337 --- /dev/null +++ b/Loops/do while Structure/demonstrat.cpp @@ -0,0 +1,14 @@ +#include +using namespace std; + +int main () +{ + /* local variable Initialization */ int n = 1,times=5; + + /* while loops execution */ while( n <= times ) + { + cout << "C++ while loops: " << n <