Consider the following output - Philadelphia University

12. What will be the values of elements of array b after executing the following code? void array (int a[], int size) { for (int i = 0; i < size-1; i++) a[i]++; a[size-1] += 15;} void main() { const int size = 4; int b[size] = {3, 2,1, 5}; array(b, size); } 3 2 1 5 b) 2 3 1 5. c) 1 2 3 5 d) 4 … ................
................