PR-5. What is the output from the following code segment? int arr [10] = {0, 1, 2, 3, 4, 5, 6, 7, 8, 9); for (int i = 0;
Posted: Wed Mar 30, 2022 9:18 am
PR-5. What is the output from the following code segment? int arr [10] = {0, 1, 2, 3, 4, 5, 6, 7, 8, 9); for (int i = 0; i < 5; i++) { cout << arr [i* 2] <<""; }