- #1
Henry R
- 25
- 0
Please identify the contents of the array after the following manipulations.
int arr[5];
arr[0] = 2;
arr[1] = arr[0] + 1;
arr[2] = arr[0] * arr[1];
arr[3] = arr[1] / arr[0];
arr[4] = arr[3] * arr[3];
View attachment 3674
*Involves multiplication, addition from the array. Solve it...
int arr[5];
arr[0] = 2;
arr[1] = arr[0] + 1;
arr[2] = arr[0] * arr[1];
arr[3] = arr[1] / arr[0];
arr[4] = arr[3] * arr[3];
View attachment 3674
*Involves multiplication, addition from the array. Solve it...