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
Write a client and server program in C language using UDP, where client program interact with the Server as given below: i) The client begins by sending a request to send a string of 8 characters or series of 7 numbers, the server sends back a characters or numbers as per the request of the client. ii) In case of series of 7 numbers: The client sends a multiplication of numbers, to the server. iii) In case of a string of 8 characters: The client sends a reverse order of string to the server.. iv) Server will send an acknowledgment to the client after receiving the correct answer
how to write a c program to print list of fruits in alpabetical order?
Tell me about low level programming languages.
What is the difference between formatted&unformatted i/o functions?
Are c and c++ the same?
What is graph in c?
What does s c mean on snapchat?
Write a C program to count the number of email on text
what is diffrence between linear and binary search in array respect to operators?what kind of operator can be used in both seach methods?
Discuss the function of conditional operator, size of operator and comma operator with examples.
can anyone suggest some site name..where i can get some good data structure puzzles???
What is the importance of c in your views?
What does %2f mean in c?
What happens if header file is included twice?
What’s a signal? Explain what do I use signals for?