Answer Posted / m.shanmugasundaram,rjnsoftware
First of all, it is not ltti. Its RTTI
Run-time type information (RTTI) is a mechanism that allows
the type of an object to be determined during program
execution.
There are three main C++ language elements to run-time type
information:
The dynamic_cast operator. Used for conversion of
polymorphic types.
The typeid operator. Used for identifying the exact type of
an object.
The type_info class. Used to hold the type information
returned by the typeid operator.
| Is This Answer Correct ? | 9 Yes | 2 No |
Post New Answer View All Answers
What is oops in simple words?
what are the different types of qualifier in java?
What is oops and its features?
What is a class and object?
Why can't we have instance(stack) of a class as a member of the same class like eg.Class A{A obj;} as we can have self refential pointer
What do you mean by variable?
What is polymorphism programming?
Can main method override?
Which type does string inherit from?
What is the difference between static polymorphism and dynamic polymorphism?
What is inheritance and how many types of inheritance?
What polymorphism means?
write a program using c++ to implement single contiguous memory mangement techniques.display the content of the main memory after yhe allocation of jobs and percentage of the wastage of the main memory
What are different types of JVM's? for example we use dalvik jvm for android then what about the remaining operating systems?
What is use of overloading?