How many times will the following loop display "Hello world!"?
for (int i = 0; i < 20; i++)
cout << "Hello world!" << endl;
a. 20
b. 19
c. 21
d. an infinite number of times