What numbers will the following code display on the computer screen? int x = 16; do {

Question:

What numbers will the following code display on the computer screen?
int x = 16;
do
{
cout << x << endl;
x -= 4;
} while (x > 10);

a. 16, 12, 8

b. 16, 12

c. 20, 16, 12, 8

d. 20, 16, 12

Fantastic news! We've Found the answer you've been seeking!

Step by Step Answer:

Related Book For  book-img-for-question
Question Posted: