Question: Consider the following two loops below. What are they doing? What is their output? A. i = 11; while (i
Consider the following two loops below. What are they doing? What is their output?
A. i = 11;
while (i <= 10)
{
cout<
i = i + 5;
}
B. i = 11;
do
{
cout<
i = 1 + 5;
} while (i <= 10);
cout<
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
