Computer Science, asked by jeenina97, 5 months ago

Calling a function f with a an array variable
a[3] where a is
an
array, is equivalent to

Answers

Answered by dipalisamaddar9249
0

Answer:

what I can't understand

Answered by indu5005
0

Answer:

F(a[3]),

F(*(a+3)) and

F(3[a])

Actually all the above methods are equivalent to it.

Similar questions