Question: How many times the loop will be executed? int odd = 1, sum = 2, count = 9; do { } sum = sum
How many times the loop will be executed? int odd = 1, sum = 2, count = 9; do { } sum = sum + odd; odd = odd + 2; cout >> sum count = count + 1; } while (count < 10)
Step by Step Solution
There are 3 Steps involved in it
The provided image shows a fragment of code written in C language which consists of a dowhile loop T... View full answer
Get step-by-step solutions from verified subject matter experts
