0
What is difference between &(address) and *(pointer)
-
2 Answers
+ 1
& gives you the addres of the var and if you use * in the whole var is only the address
+ 1
& gives you the address of a variable and * gives you access to the variable the pointer is pointing to