Difference between Overloading and Overriding?
Answer Posted / stephen-pipes afrifa
Overloading: The function name is the same but the
parameters are different or have different signature
Overriding: The member function having the same name and
types of parameters as function in the base class.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is heap sort in c++?
What is c++ good for?
Does c++ have string data type?
What is &x in c++?
What is #include iostream in c++?
What is std :: endl?
What is an operator in c++?
What is the difference between *p++ and (*p)++ ?
How do you compile the source code with your compiler?
What is a namespace in c++?
Explain about vectors in c ++?
write a corrected statement so that the instruction will work properly. if (4 < x < 11) y = 2 * x;
What is auto type c++?
What is rtti in c++?
When do you call copy constructors?