class base
{
public:
int fun(int)
{}
};
class base2
{
public:
int fun(float)
{
}
};
so here qustion is both function either function
overloading or over riding;
Answer Posted / sandeep mannarakkal
Over loading and overriding , both are performing in the same scope, here both functions have different scope.
So it is NOT overloading ,
NOT over riding.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
daily Routine of father
We use library functions in the program, in what form they are provided to the program?
What is the difference between multiple and multilevel inheritance in c++?
Will c++ be replaced?
What is java and c++?
Explain the concept of memory leak?
When you overload member functions, in what ways must they differ?
why is iostream::eof inside a loop condition considered wrong?
explain the reference variable in c++?
What is == in programming?
what is pre-processor in C++?
Can you pass a vector to a function?
What is the extension of c++?
What is a singleton c++?
Explain mutable storage class specifier.