Which of the following operators can be overloaded
a) .(dot operator)
b) &(address operator)
c) Size of operator
d) ?: (conditional operator)
Answers
Answered by
1
Answer:
Here are a few of the many examples of operator overloading: myString + yourString might concatenate two std::string objects. myDate++ might increment a Date object. a * b might multiply two Number objects.
I hope it help you...
Similar questions