Protected members in inheritance
Correct me if I am wrong..The definition of protected members goes like âA protected member is accessible by its own class and any class âimmediately' derived from it"(as per balagurusamy's book).. So program like this is valid: class A{ protected: int a; }; class B : public A { public : void get() { cin>>a; cout<<a<<endl; } }; int main() { B b; b.get(); return 0; } But this program is also not giving any error and is running perfectly.. class A{ protected: int a; }; class B : public A { public : void get() { cin>>a; cout<<a<<endl; } }; class C : public A { public: void gets() { cin>>a; cout<<a; } }; int main() { B b; C c; b.get(); c.gets(); return 0; } So as per the definition protected member 'a' of class A can only be accessed by Class A and B..So this prpgram should give error but it isn't..WHY?? See comment section..