Answer Posted / ravi kant
RTTI stands for run time type identification
| Is This Answer Correct ? | 1 Yes | 1 No |
Post New Answer View All Answers
What is the difference between public and private data members?
Give the difference between the type casting and automatic type conversion. Also tell a suitable C++ code to illustrate both.
What is class definition in c++ ?
What is vector string in c++?
How are virtual functions implemented in c++?
What is string in c++ programming?
What is #include iostream in c++?
What is boyce codd normal form in c++?
What is the use of cmath in c++?
Explain how overloading takes place in c++?
How do you traverse a btree in backward in-order?
I was a c++ code and was asked to find out the bug in that. The bug was that he declared an object locally in a function and tried to return the pointer to that object. Since the object is local to the function, it no more exists after returning from the function. The pointer, therefore, is invalid outside.
What is a stack? How it can be implemented?
What is binary search in c++?
When to use “const” reference arguments in a function?