[7.8.b] What value is stored in x [4] if the function manipulate() is invoked as follows int x[] = {1, 2, 3, 4, 5); manipulate(x, 5); void manipulate(int x[], int size) { } for (int i = 0; i < size; i++) x[i] = x[i] + size; 0 6 O 10 0 8 O 25
[7.8.b]What value is stored in x [4] if the function manipulate is invoked as follows intx[]={1,2,3,4,5}; manipulate(x,5);
void manipulate(int x[], int size)
for(int i=0; i < size; i++) x[i]=x[i]+size; }
6
010
O8
25