What is RTTI and why do you need it?
No Answer is Posted For this Question
Be the First to Post Answer
How to convert integer to string in C++
Discuss the role of C++ shorthands.
Write a program to read two numbers from the keyboard and display the larger value on the screen
When must you use a constructor initializer list?
How to invoke a C function using a C++ program?
What is meant by exit controlled loop?
What is a COPY CONSTRUCTOR and when is it called?
How many times will this loop execute? Explain your answer.
How can you force the compiler to not generate them?
What is wrong with this statement? std::auto_ptr ptr(new char[10]);
What is RTTI and why do you need it?
Identify the error in the following program. #include<iostream.h> void main() { int i = 0; i = i + 1; cout « i « " "; /*comment *//i = i + 1; cout << i; }