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;
-
answerhappygod
- Site Admin
- Posts: 899604
- Joined: Mon Aug 02, 2021 8:13 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;
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] <<""; }
Join a community of subject matter experts. Register for FREE to view solutions, replies, and use search function. Request answer by replying!