Problem #1: This program contains some error(s), can you spot which line(s) contains error(s)? 1 // Problems No.1 2 // Related to Inheritance 3 #include 4 5 // base class 6 class base 7 { 8 int a; 9 10 public: 11 void seta(int num){a=num;} 12 }; 13 14 // derived class 15 class derived:public base 16 { 17 int b; 18 19 public: 20 void setb(int num){b=num;} 21 22 void show() 23 { 24 cout< 4 5 // base class 6 class base 7 { 8 protected: 9 int a; 10 11 public: 12 void seta(int num){a=num;} 13 }; 14 15 // derived class 16 class derived:protected base 17 { 18 protected: 19 int b; 20 21 public: 22 void setb(int num){b=num;} 23 void show() 24 { 25 cout< 4 5 // base class (1) 6 class
If you’re too cute to be single! then date me :--