what is ltti
Answer / 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 |
What do you mean by binding of data and functions?
#include <iostream> using namespace std; int main() { int a = 3; int c[5][5]; for (int x=0;x<5;x++) { for (int y=0;y<5;y++) { c[x][y] = x*y; } } cout << c[a][2]; }
What does I oop mean?
What is OOPS and How it is different from Procedural Programming ?
23 Answers HP, Infosys, Thyrocare,
what is mean by design pattern
What is a friend function & its advantage?
what is the main difference between sizeof() operator in c and c++
How many types of access specifier in c# and vb.net?
We have a scale and 7 balls. 1 ball is heavier than all the rest. How to determine the heaviest ball with only 3 possible weighing attempts?
What are the advantages of inheritance?
26 Answers IBS, TCS,
What is the correct syntax for inheritance? 1) class aclass : public superclass 2) class aclass inherit superclass 3) class aclass <-superclass
What are the access specifiers avaible in c++?