Joined
Last Seen
0 Reputation Points
Unknown Quality Score
No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
0 Endorsements
Ranked #55.0K
1 Posted Topic
i m having one doubt regarding hybrid inheritance . i m just a beginner so its not clear to me :confused: DOUBT: WHY THE FOLLOWING CODE IS GIVING AMBIGUITY ERROR #include<iostream.h> class a { public: void f() { cout<<"base class\n"; } }; class b:private a //visibility mode private { public: … |
The End.