Featured
-
Binary search in C++
If you want to find the presence of a element in a
by kumar.abhishek
Tags
Overloading vs Overridding
Overloading :
Same function name with different parameters/signatures.
It is compile time polymorphism.
It occurs in a same class methods.
It is a static/compile time binding.
For e.g:
int sample()
{
cout<<"no argu...