difference between pointer variable(*) and address of variable(&)
Answers
Answered by
0
Answer:
The indirection operator (*) gets the value stored in the memory location whose address is stored in a pointer variable. The address of (&) operator returns the address of the memory location in which the variable is stored.
Thank you =)
Similar questions