Pointer Operators

Learn to use pointer operators with a variable, a constant, and an expression.

& and * are both known as pointer operators. Let’s see the use of pointer operators with a variable, a constant, or an expression.

& with a variable, a constant, and an expression

& is called the address-of operator. & can only be used with a variable, as a variable is allocated space in memory. Whereas, the compiler does not reserve any space for a ...