Answer Posted / pugalarasu
Overloading:
Same function name but different arguments
Eg:
A(int i);
A(int i,float f);
Overriding:
refers to functions that have the same signature as a
virtual function in the base class:
class B {
virtual void V();
};
class D : public B {
viod V();
};
Is This Answer Correct ? | 3 Yes | 1 No |
Post New Answer View All Answers
What are the parts of c program?
Explain bitwise shift operators?
What is the difference between far and near ?
Does sprintf put null character?
What is n in c?
What is the hardest programming language?
A text file that contains declarations used by a group of functions,programs,or users a) executable file b) header file c) obj file d) .cfile
hi, which software companys will take,if d candidate's % is jst 55%?
Explain the difference between malloc() and calloc() in c?
Why c is known as a mother language?
Can a variable be both constant and volatile?
What is the difference between single charater constant and string constant?
How can I pad a string to a known length?
When should you use a type cast?
What happens if header file is included twice?