Compare compile time polymorphism and Runtime polymorphism
In Compile time Polymorphism, the call is resolved by the compiler. In Run time Polymorphism, the call is not resolved by the compiler. It is also known as Static binding, Early binding and overloading as well. It is also known as Dynamic binding, Late binding and overriding as well
| Is This Answer Correct ? | 0 Yes | 0 No |
Is c better than c++?
What is the use of endl in c++?
Which bitwise operator is used to check whether a particular bit is on or off?
What is size_type?
what is the basic concept of c++(object oriented programing)
What is a volatile variable in c++?
the maximum length of a character constant can be a) 2 b) 1 c) 8
What C++ libraries are you proficient with?
What is problem with Runtime type identification?
What is meaning of in c++?
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
int main() { int i ,a[i]; i = 0; a[i] = 10; cout<< a[i] << endl; return 0; } What will be output of this program?