Other contributors have said "In a circuit what is the minimum number r of items you need to make a complete working loop?" is the same question as "What are the minimum number of loop iterations in a nested do while loop?" If you believe that these are not asking the same thing and should be answered differently, click here
What are the minimum number of loop iterations in a nested do while loop?
The condition for a while loop is tested at the start of the loop. It is tested at the end of the loop for a do-while loop. The body of a do-while loop will always be executed at least once. Whereas...
for loop it consists of 3 parts 1. initialization 2. condition 3. incrementation like for(i=1;i<=10;i++).This loop executes 10 times. While loop: This is an entry check loop. First it checks for...
In C, for loops, while loops, and do while loops are control structures for repeating a sequence of code based on a condition. While loops and for loops are interchangeable and work top down meaning...