How many times the following code prints "Welcome to C++"?
```
int count = 0;
while (count < 10)
{
cout << "Welcome to C++";
count++;
}
```
A. 8
B. 11
C. 10
D. 9
E. 0
C. 10
Computer Science & Information Technology
You might also like to view...
A mathematical formula in a cell can use both text and numbers
Indicate whether the statement is true or false
Computer Science & Information Technology
The format specifier ________ is used to output values of type float or double.
a. %f b. %d c. %fd d. %r
Computer Science & Information Technology