pointers

User Generated

kvakva

Programming

Description

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

User generated content is uploaded by users for the purposes of learning and should be used following Studypool's honor code & terms of service.

Explanation & Answer

ptr=&arr
Store address of function Array to Function Pointer....

*ptr=&arr
it store value and address both...

Related Tags