C++ Pointer Operator
In this chapter we are going to study C++ Pointer Operators. C++ provides two pointer operators one is value at operator or indirection operator and address operator. C++ Pointer OperatorC++ Address of Operator (&)The & is a unary operator means it requires only one operand. The Address of Operator returns the memory address of its operand. Address of operator has the same precedence and right-to-left associativity as that of other unary operators. Symbol for the bitwise AND and the address of operator are [...]