Enquire Now

Tags: address-operator

The name of the prefix unary ampersand operator (&) used in C and C++ to get the address of its operand, i.e. a pointer value pointing to that operand. For example, if `a` is an object of some type `T`, then `&a` will be a pointer value of type `T*` pointing to `a`.

0 Questions