Ask Question

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;

+5
Answers (1)
  1. 9 November, 21:46
    0
    c

    Explanation:

    xxhdudhshshsudjdjd
Know the Answer?
Not Sure About the Answer?
Find an answer to your question 👍 “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; ...” in 📗 Computers & Technology if the answers seem to be not correct or there’s no answer. Try a smart search to find answers to similar questions.
Search for Other Answers