Write down the syntax of:
(a) do - while
(b) while loop
28 Likes
do { //loop-body } while (condition);
while (condition) { //loop-body }
Answered By
14 Likes
What is for loop? What are the parameters used in for loop?
Define the following with their constructs:
(a) Entry controlled loop
(b) Exit controlled loop
What is the purpose of using break statement in a program?
What is the purpose of using continue statement in a program?