Solved

What Will the Following Code Display

Question 36

Multiple Choice

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.

Correct Answer:

verifed

Verified

Unlock this answer now
Get Access to more Verified Answers free of charge

Related Questions