Chapter 8: Problem 10
What is stored in myList after the following C++ code executes? double myList[5]; myList[0] = 3.0; myList[1] = 4.0; for (int i = 2; i < 5; i++) { myList[i] = myList[i - 1] * myList[i - 2]; if (i > 3) myList[i] = myList[i] / 4; }
Short Answer
Step by step solution
Key Concepts
These are the key concepts you need to understand to accurately answer the question.