Given the following snippet of code. How many times the codeoutputs the sum of i, j, and k.
for (int i= 0; i<10; i++)
for (int j= 0; j<10; j++)
for (int k= 0; k<10; k++)
cout << i << ” + ” << j << ” + “<< k << ” = ” << i+j+k << endl;
Expert Answer
An answer will be send to you shortly. . . . .