Answered You can hire a professional tutor to get the answer.
What are the values in the array after execution of the following code?
What are the values in the array after execution of the following code?
int a[4] = {3, 7, 6, 2};
int i = 2;
a[i] = i + 1;
a[i + 1] = a[ i – 1];
a[1] = 5;