Ask Question
16 October, 08:04

Given the following code, what will it display?

int numbers[ ] = {99, 87, 66, 55, 101 };

cout << numbers[3] << endl;

+5
Answers (2)
  1. 16 October, 08:32
    0
    We are given the following set : int numbers[ ] = {99, 87, 66, 55, 101 }; where the numbering of each elements starts from zero to four. In this case, zero is 99, one is 87, two is 66, three is 55 and four is 101. When cout << numbers[3] << endl; the answer is 55
  2. 16 October, 11:54
    0
    Number#4 = 55; start counting from 0
Know the Answer?
Not Sure About the Answer?
Get an answer to your question ✅ “Given the following code, what will it display? int numbers[ ] = {99, 87, 66, 55, 101 }; cout ...” in 📙 Computers & Technology if there is no answer or all answers are wrong, use a search bar and try to find the answer among similar questions.
Search for Other Answers