What will the following code display?
int numbers[] = {99, 87, 66, 55, 101};
for (int i = 1; i < 4; i++)
cout << numbers[i] << " ";
a. 99 87 66 55 101
b. 87 66 55 101
c. 87 66 55
d. Nothing. This code has an error.
c. 87 66 55
Computer Science & Information Technology