C++ Programming Question:
Download Questions PDF

Differentiate between the message and method in C++?

Answer:

Message in C++ :
* Objects communicate by sending messages to each other.
* A message is sent to invoke a method in C++.

Method in C++ :
* Provides response to a message.
* It is an implementation of an operation in C++.

Download C++ Programming Interview Questions And Answers PDF

Previous QuestionNext Question
What is a dangling pointer in C++?What is an adaptor class or Wrapper class in C++?