Which of the following loop statements is guaranteed to iter
Which of the following loop statements is guaranteed to iterate the body of the loop at least once? Select one. none of the above for (initialize; test; update) body; do body while(control); while(control) body,
Solution
do while loops is guaranteed to execute at least once
Answer:C
do body while(control);
