User Profile
Collapse
-
yes , it is possible but in some cases if statement doesn't have option. -
how we can avoid ambiguty in multiple inheritance
//example
Code:class a { public: int a; a=10; } class b { public: int a; a=5; } class c:a,b { int d; //how we can print vallue of a as 10 by avoiding ambiguty } void main() { c c1; cout<<c1.a; }
No activity results to display
Show More
Leave a comment: