Description
what is the difference between: ptr=&arr; and *ptr=&arr; are they same?

Explanation & Answer

ptr=&arr
Store address of function Array to Function Pointer....
*ptr=&arr
it store value and address both...

what is the difference between: ptr=&arr; and *ptr=&arr; are they same?
ptr=&arr
Store address of function Array to Function Pointer....
*ptr=&arr
it store value and address both...