OOP
Read more
Continue Statement || break Statement || Nested Loops
Continue Statement The continue statement is used in the body of the loop to transfer the control to the start of the l…
May 01, 2024Continue Statement The continue statement is used in the body of the loop to transfer the control to the start of the l…
Munir Ahmad May 01, 2024Pretest and Posttest in Loops A pretest is a condition that is tested at the beginning of loop. The body of pretest loo…
Munir Ahmad April 30, 2024do-while Loop The do-while is an iterative control in C++ language. This loop executes one or more statements while t…
Munir Ahmad April 29, 2024while Loop The while loop is the simplest loop of C++ language. This loop executes one or more statements while the g…
Munir Ahmad April 28, 2024