2 answers
1
If $x$ is a one dimensional array, then$^*(x+i)$ is same as $^*(\&x[i])$$\&x[i]$ is same as $x+i-1$$^*(x+i)$ is same as $^*x[i]$$^*(x+i)$ is same as $^*x+i$
1 answer
2
Consider the following function:int f(int n){staticint i=1;if(n>5)return n;n=n+i;return f(n);}The value of f(1) is: