What is the value in count after the following loop is executed?

```
int count = 0;
do
{
cout << "Welcome to C++";
} while (count++ < 9);
cout << count;
```

A. 8
B. 0
C. 11
D. 9
E. 10

E. 10

Computer Science & Information Technology

You might also like to view...

A(n) ________ is a single spreadsheet

Fill in the blank(s) with correct word

Computer Science & Information Technology

You can assign permissions to printers, but not audit their usage

Indicate whether the statement is true or false

Computer Science & Information Technology