0
C++ & and *
what is different between those two? i know that they r all pointers though..
3 Respuestas
+ 2
& is used to return the memory address of an object or variable.
* is used to declare a pointer.
0
thanks!
- 1
& is means address of variable..
or
& is means AND gate for example, a=5, b=7 so, a&b;
and * is used in pointer...