What is a reference in C++?
References are the third basic kind of variable that C++ supports. A reference is a C++ variable that acts as an alias to another object or value. C++ supports three kinds of references: References to non-const values (typically just called “references”, or “non-const references”), which we'll discuss in this lesson.
| Is This Answer Correct ? | 0 Yes | 0 No |
What is ios :: in in c++?
What is a class template in c++?
What is the use of function pointer?
what is Member Functions in Classes?
List the advantages of inheritance.
How the virtual functions maintain the call up?
What are dynamic type checking?
What is the difference between inline functions and macros?
Can constructor be private in c++?
What is a NULL Macro? What is the difference between a NULL Pointer and a NULL Macro?
Explain how would you handle a situation where you cannot call the destructor of a local explicitly?
What are different types of polymorphism supported by C++