Question

How many times will the following loop print hello?
i = 1;
while (i <= 10) {
cout << "hello";
}
a. 0.
b. 9.
c. 10.
d. An infinite number of times.

Answer

This answer is hidden. It contains 26 characters.