Question: class Addr { public: //comment 1 Addr(int i=0) { total = i; } //comment 2 void addNum(int num) { total += num; } //friend function

class Addr { public: //comment 1 Addr(int i=0) { total = i; } //comment 2 void addNum(int num) { total += num; } //friend function goes here private: //comment 3 int total; }; In as much detail as you can explain... What does the first comment specify? What does the second comment specify? What does the third comment specify?

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!