Ask Question
18 June, 11:37

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;

+3
Answers (1)
  1. 18 June, 13:25
    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 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