gracemconner5195 gracemconner5195 19-07-2019 Computers and Technology contestada What is the output of the C++ codeabove? a. 0 1 2 3 4 c. 0 5 10 15 20 b. 0 5 10 15 d. 5 10 15 20 int list [5] = {0, 5, 10, 15, 20}; int j; for (j = 0; j < 5; j++) cout << list [j] << " "; cout << endl;