Q180
Give the function prototype of the operator function which we need to define in this program so that the program has no errors. #include #include using namespace std; class Box int capacity; public: Box() Box(double capacity) this->capacity = capacity; ; int main(int argc, char const *argv[]) Box b1(10); Box b2 = Box(14); if(b1 == b2) cout<<"Equal"; else cout<<"Not Equal"; return 0;
A.
bool operator==();
B.
bool operator==(Box b){}
C.
bool operator==(Box b);
AnswerD.
Box operator==();
Answer: Option C
Solution
Answer: Option C
No explanation is given for this question Let's Discuss on Board