distinguish between (*p)[4] and *p[4]?
Attachments:
Answers
Answered by
1
Variables are essentially containers within memory, memory that has been assigned for that variable to use by the operating system. *p is a variable that stores the address of the p variable. ... &p is the address of the p variable. you can use this to assign pointers to variables.
may it is helpful
Similar questions