How many member functions are there in this C++ class excluding constructors and destructors?
Posted: Wed Jul 13, 2022 7:52 pm
class Box
{
int capacity;
public:
void print();
friend void show();
bool compare();
friend bool lost();
};
a) 1
b) 2
c) 3
d) 4
{
int capacity;
public:
void print();
friend void show();
bool compare();
friend bool lost();
};
a) 1
b) 2
c) 3
d) 4