You have already completed these exercises!
Do you want to take them again?
You completed the C++ The foreach Loop Exercises from W3Schools.com
Share on:
What will be the output of the following code?int values[3] = {10, 20, 30};for (int x : values) { cout << x << " ";}
int values[3] = {10, 20, 30};for (int x : values) { cout << x << " ";}