What is the output of the following C++ code? (4) vector intList(5); for (int i = 0; i intList[i] = i * (i + 1); for (auto p : intList) cout What is the output of the following C++ code? (4) ...




What is the output of the following C++ code? (4) vector intList(5);

for (int i = 0; i <>



intList[i] = i * (i + 1);


for (auto p : intList)



cout <><>


What is the output of the following C++ code? (4)


vector intList(5);

int num = 1;


for (auto &p : intList)



{



if (num % 2 == num % 3)



p = 2 * num;



else



p = 3 * num;



num = p - 2;



}


for (auto p : intList)



cout <><>





May 18, 2022
SOLUTION.PDF

Get Answer To This Question

Submit New Assignment

Copy and Paste Your Assignment Here