Multilevel Inheritance in C++ | C++ Tutorial | Mr. Kishore

แชร์
ฝัง
  • เผยแพร่เมื่อ 7 พ.ย. 2024

ความคิดเห็น • 26

  • @NareshIT
    @NareshIT  5 ปีที่แล้ว +2

    Please Comment, Subscribe and Click Bell🔔🔔🔔 Icon for More Updates. To learn software course from our experts please register here for online training: goo.gl/HIB0wL

  • @ravisinghrawat5644
    @ravisinghrawat5644 4 ปีที่แล้ว +4

    Thankyou , whole series of C++ studied from ur channel , once again thankyou

  • @radhagoyal3606
    @radhagoyal3606 2 ปีที่แล้ว

    Watched all of the videos till 53 for cpp. Great experience till now. Thanku

  • @hariharan-wy2pl
    @hariharan-wy2pl 6 ปีที่แล้ว +2

    No one can explain like u sir. Very nice ... Continue sir

  • @vnarayana1810
    @vnarayana1810 4 ปีที่แล้ว +2

    Nice explanation,We want to more & more Programs with C & C++Using the irregular students in examinations, Thank you sir! 😊

  • @raghavendrasiyer8326
    @raghavendrasiyer8326 6 ปีที่แล้ว +3

    sir wt is advantage of multilevel inheritance over multiple both does same job

  • @n.padmapriyaassistantprofe6973
    @n.padmapriyaassistantprofe6973 7 ปีที่แล้ว +2

    neat explanation sir.thanks a lot

  • @laxmanpoudel5230
    @laxmanpoudel5230 6 ปีที่แล้ว +2

    Does ambiguity occur in multilevel inheritance .?

  • @330_vanshikasingh9
    @330_vanshikasingh9 4 ปีที่แล้ว +4

    why in base class he has declared the data members as private?????should'nt it be protected......????!!!

  • @sinikannur9069
    @sinikannur9069 3 ปีที่แล้ว

    NICE CLASS,NICE EXPLANATION

  • @atishjaiwal4567
    @atishjaiwal4567 6 ปีที่แล้ว

    Very Nice Explanation and easy to understand . Thank You So Much...

  • @shubhthakare4591
    @shubhthakare4591 3 ปีที่แล้ว

    what about data members of 1st class( student class) the members are by default private then how can we access them outside class or do we need to declare them protected???
    or if we declare the data members of student class(1 base class) as protected then would it change visibility of intermediate class or no?
    please answer....

  • @sudipsen3677
    @sudipsen3677 3 ปีที่แล้ว

    Best teacher ❤️

  • @technoedutech3990
    @technoedutech3990 7 ปีที่แล้ว +1

    very good example sir

  • @avr96
    @avr96 7 ปีที่แล้ว +2

    sir please organise all your video in topic wise manner thanks

  • @nishithbaravkar7549
    @nishithbaravkar7549 4 ปีที่แล้ว

    thank you kishore sir for thia wonderful video

  • @vanthanar.6028
    @vanthanar.6028 3 ปีที่แล้ว +1

    Class ku vaeliya function define panalama

  • @keerthanagnanaguru9850
    @keerthanagnanaguru9850 5 ปีที่แล้ว

    very good explanation ...excellent

  • @souravchoudhary340
    @souravchoudhary340 4 ปีที่แล้ว

    God bless you!!

  • @mrx2118
    @mrx2118 3 ปีที่แล้ว

    Thanks sir🥰

  • @parthmandaliya7701
    @parthmandaliya7701 4 ปีที่แล้ว

    Hello kishor my father name is also kishor
    What is co-incedance

  • @ajaykharat8689
    @ajaykharat8689 6 ปีที่แล้ว

    #include
    using namespace std;
    class stu
    {
    int id;
    char *s;

    public:
    void getstu()
    {
    coutid>>s;
    }

    };
    class mark : public stu
    {
    protected:
    int m1,m2,m3;
    public:
    void getmark()
    {
    coutm1>>m2>>m3;
    }
    };
    class result:public mark
    {
    int total;
    float avg;
    public:
    void getres()
    {
    total=m1+m2+m3;
    avg=total/3;
    cout