Why references are different from pointers?
Why references are different from pointers? Correct Answer All of the mentioned
References cannot be made null whereas a pointer can be. References cannot be changed whereas pointers can be modified. Pointers need * operator to dereference the value present inside it whereas reference does not need an operator for dereferencing.