Accessing Inherited Functions

Sort by

recency

|

272 Discussions

|

  • + 0 comments

    Please, remove this exercise. It is ambiguous and discreditates the quality of HackerRank.

  • + 0 comments

    Here is Accessing Inherited functions problem solution in c++ - https://programmingoneonone.com/hackerrank-accessing-inherited-functions-solution-in-cpp.html

  • + 0 comments

    This allows developers to build on existing functionality without rewriting code, making systems more modular and maintainable. Gold 365.win Login

  • + 0 comments

    It really helped solidify the concept of function visibility and the use of scope resolution when needed. Tigerexch247 Registration

  • + 0 comments

    class D : public A, public B, public C { int val; public: //Initially val is 1 D() { val = 1; } //Implement this function void update_val(int new_val) {
    while (new_val > val) { if((new_val /val) % 2 == 0){ A::func(val); continue; }

                if((new_val /val) % 3 == 0){
                    B::func(val);
                    continue;
                }
    
                if((new_val /val) % 5 == 0){
                    C::func(val);
                    continue;
                }
    
    
            }
    
    
    
         }
         //For Checking Purpose
         void check(int); //Do not delete this line.
    

    };