- 1
challege
Fill in the blanks to calculate and return the multiplication product of the array elements. foo(int arr[], int size) { int mult = ; for (int x = 0; x < size; x++) { mult = arr[x]; } mult; }
1 Answer
0
Drag and drop from the options below to create an object of the A class in the B class and call its "test" method.