C contains two special pointer operators :
C contains two special pointer operators * and &.
A pointer is a variable that stores the address of another variable.
C++ provides two pointer operators, which are address of operator & and indirection operator *. A pointer is a variable that contains the address of another variable or we can say that a variable that contains the address of another variable is said to "point to" the other variable.