Difference between Overloading and Overriding?
Answer Posted / ramesh pedhamalla
Overloading is compile time binding, where as overriding is
dynamic binding.....
| Is This Answer Correct ? | 112 Yes | 25 No |
Post New Answer View All Answers
What is a dynamic binding in c++?
Why is c++ awesome?
Should the this pointer can be used in the constructor?
What is difference between c++ and c ++ 14?
What are smart pointers?
Can the creation of operator** is allowed to perform the to-the-power-of operations?
How do I get good at c++ programming?
What is size of string in c++?
How to implement is-a and has-a class relationships?
Who made c++?
how can i access a direct (absolute, not the offset) memory
address?
here is what i tried:
wrote a program that ask's for an address from the user,
creates a FAR pointer to that adress and shows it. then the
user can increment/decrement the value in that address by
pressing p(inc+) and m(dec-).
NOW, i compiled that program and opened it twice (in 2
different windows) and gave twice the same address to it.
now look what happen - if i change the value in
one "window" of the program, it DOES NOT change in the
other! even if they point to the same address in the memory!
here is the code snippet:
//------------------------------------------------------
#include What is pair in c++? What are manipulators used for? Write a Program for find and replace a character in a string. What is a class definition?