KnowledgeBoat Logo
|

Computer Applications

Write down the construct (syntax) of Nested do-while loop:

Java Nested for Loops

36 Likes

Answer


do {
      //statements of outer do-while loop
      ..
      ..
      do {
            //statements of inner do-while loop
      } while (<condition>);
      ..
      ..
} while (<condition>);

Answered By

22 Likes


Related Questions