What are the difference between reference variables and pointers in C++?
Answer Posted / hrpynux@gmail.com
Pointers: A pointer is a variable that holds memory address of another variable. ... References : A reference variable is an alias, that is, another name for an already existing variable. A reference, like a pointer, is also implemented by storing the address of an object.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
How the keyword struct is different from the keyword class in c++?
Explain the virtual inheritance in c++.
Write a program which uses Command Line Arguments
How is c++ different from java?
why and when we can declar member fuction as a private in the class?
What is low level language in simple words?
What is an html tag?
In c++, what is the difference between method overloading and method overriding?
What causes a runtime error c++?
Can user-defined object be declared as static data member of another class?
What is switch case in c++ syntax?
Is it possible to have a recursive inline function in c++?
Is python written in c or c++?
Who calls main function?
write a function signature with various number of parameters.