Calling a function f with a an array variable
a[3] where a is
an
array, is equivalent to
Answers
Answered by
0
Answer:
what I can't understand
Answered by
0
Answer:
F(a[3]),
F(*(a+3)) and
F(3[a])
Actually all the above methods are equivalent to it.
Similar questions