Step 16What does this program do? Step through it, or click on the Run button to step
continuously Program 16-2Change this so that it fills the array with 1 Program 16-2Change it so that it sets elements 5 to 10 with the value 2 Program 16-3Change it so that every second element ( 0,2,4,6..14 inclusive) get the value 3 Program 16-4Change it so the array is filled with 10, backwards - that is g[14] first, then
g[13], g[12] and so on, g[0] last. Program 16-5Copy array g into h |
|
|
| Index: | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 |
| g: | a0 | a0 | a0 | a0 | a0 | a0 | a0 | a0 | a0 | a0 | a0 | a0 | a0 | a0 | a0 |
| h: | a0 | a0 | a0 | a0 | a0 | a0 | a0 | a0 | a0 | a0 | a0 | a0 | a0 | a0 | a0 |