KnowledgeBoat Logo

Computer Applications

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

Java Nested for Loops

31 Likes

Answer


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

Answered By

20 Likes


Related Questions