0
/ 95
Rewrite the following do while
loop using a for
loop.
call_a(); do { call_c(); } while (call_b());
Rewrite the following do while
loop using a for
loop.
call_a();
do {
call_c();
} while (call_b());
Your feedback will appear here when you check your answer.