Vidyalelo
C++ Programming · Q99

Classes and Objects in C++

Programming · C++ Programming · question 99

Q99

How many member functions are there in this C++ class excluding constructors and destructors? class Box int capacity; public: void print(); friend void show(); bool compare(); friend bool lost(); ;

A.
1
B.
2
Answer
C.
3
D.
4

Answer: Option B

Solution

Answer: Option B
No explanation is given for this question Let's Discuss on Board