Page 1 of 1

How many member functions are there in this C++ class excluding constructors and destructors?

Posted: Wed Jul 13, 2022 7:52 pm
by answerhappygod
class Box
{
int capacity;
public:
void print();
friend void show();
bool compare();
friend bool lost();
};
a) 1
b) 2
c) 3
d) 4