What is problem with Runtime type identification?
Answers were Sorted based on User's Feedback
Answer / guest
Run Time Type Identification (RTTI) affects the performance
Is This Answer Correct ? | 5 Yes | 2 No |
Answer / achal ubbott
RTTI feature was added to know the type of the object at
the run time. Most modern standard c++ compilers support
this feature. Now since the identification is done at the
runtime, this makes the execution slow.
Is This Answer Correct ? | 2 Yes | 2 No |
What is the precedence when there is a global variable and a local variable in the program with the same name?
What is difference between shallow copy and deep copy? Which is default?
Write a struct time where integer m, h, s are its members?
what is the diff b/n c and c++ a. dynamic scoping b. nested switching c. declaration of variables in any code block d. separation of compilation and linking
Write a C++ Program to Generate Random Numbers between 0 and 100
Comment on local and global scope of a variable.
Explain the purpose of the keyword volatile.
i want to know how to copy arrary without using any method or function. I have tried the below using System; class e4 { static void Main(string[] args) { int a,b; int[ ] m= new int[5]; int[ ] n= new int[5]; for(a=0;a<=4;a++) { Console.WriteLine("enter any value"); m[a]=Convert.ToInt32(Console.ReadLine()); m[a]=n[a]; } for(b=0;b<=4;b++) { Console.WriteLine(n[b]); } } } but it will give wrong result can anyone solve this problem
What is the use of namespace std in C++?
Does c++ cost money?
without if else statement can be written ah
What is using namespace std in c++?