213k views
4 votes
What is the output of the following C++ code? int list[5] = {0, 5, 10, 15, 20}; int j; for (j = 0; j < 5; j++) cout << list[j] << " "; cout << endl; Group of answer choices 0 1 2 3 4 0 5 10 15 0 5 10 15 20 5 10 15 20

User Nageswaran
by
4.3k points

1 Answer

4 votes

Answer:

what?

Step-by-step explanation:

User Jamez
by
4.0k points