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