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
Explain how can you determine the size of an allocated portion of memory?
in linking some of os executables are linking name some of them
What are the different types of pointers used in c language?
Describe explain how arrays can be passed to a user defined function
What is string constants?
Write a program to check palindrome number in c programming?
How can I check whether a file exists? I want to warn the user if a requested input file is missing.
What are predefined functions in c?
Is c is a middle level language?
What is a constant?
What is the difference between declaring a variable by constant keyword and #define ing that variable?
What is difference between array and pointer in c?
void main(){ int a; a=1; while(a-->=1) while(a-->=0); printf("%d",a); }
Explain what is wrong with this program statement?
What is difference between far and near pointers?