Ask Question
4 June, 05:00

Given the following code, what will it display?

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

cout << numbers[3] << endl;

+5
Answers (2)
  1. 4 June, 06:57
    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. 4 June, 08:45
    0
    Number#4 = 55; start counting from 0
Know the Answer?
Not Sure About the Answer?
Find an answer to your question ✅ “Given the following code, what will it display? int numbers[ ] = {99, 87, 66, 55, 101 }; cout ...” in 📘 Computers and Technology if you're in doubt about the correctness of the answers or there's no answer, then try to use the smart search and find answers to the similar questions.
Search for Other Answers