What is the difference between references and pointers?
What is the difference between references and pointers? Correct Answer References are an alias for a variable whereas pointer stores the address of a variable
References are an alias/another name for a variable whereas pointer stores the address of a variable. Pointers need to be deference before use whereas references need not.