Computer Science, asked by SalihaSheikh, 3 months ago

Is there any syntax for nested loop?

Answers

Answered by AeraSimran
2

Nested loop means a loop statement inside another loop statement. That is why nested loops are also called as “loop inside loop“. Syntax for Nested Do-While loop: do{ do{ // statement of inside loop }while(condition); // statement of outer loop }while(condition);

Similar questions