- 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 1 (10.64 KiB) Viewed 38 times
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;
-
- Site Admin
- Posts: 899603
- 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] <<""; }