Latest Persistent Aptitude Question SOLUTION: #include int a[5] ={1,2,3,4,5},i,j=2,b; func(int j,int *a) { j=j+1; a=a+j; b= b+2; } int main() { for (i =0;i<5;i++ ) func(j,a[i]); for (i =0;i<5;i++ ) printf("%d",a[i]); ret