Virtual Functions and Polymorphism in C++ - C++ Programming - Computer Science Class 12

preview_player
Показать описание
Virtual Functions and Polymorphism in C++ Video Lecture From C++ Programming Chapter of Computer Science Class 12 Subject For All Students.

#JavaProgrammingTutorial
#EkeedaOnlineLectures
#EkeedaVideoLectures
#EkeedaVideoTutorial

C++ Programming
C++ Programming Tutorial
C++ Programming For Beginners
C++ Programming Language
Computer Science Class 12
Computer Science for Class 12
Class 12 Computer Science
Class 12 Computer Science C++

Thanks For Watching. You can follow and Like us on following social media.

Happy Learning : )
Рекомендации по теме
Комментарии
Автор

Hello Friends,
Watch Full Video Series of Subject Computer Science Class 12 Complete Free only on Ekeeda Application.
Download Ekeeda Application.

Ekeeda
Автор

3:04 it will call function of derived class, not a base class if virtual function is not implemented

class A
{
int n;
public:
void show()
{
cout<<"Base class";
}
};

class B : public A
{
int y;
public:
void show()
{
cout<<"Derived class";
}
};

Getting confused on this

smitthacker
Автор

Maam may I know where are ur videos for files and streams and type conversion??
(From Ekeeda)

dakshitakolte
Автор

Such a simple & very very nice way of teaching you are amezing

AsadTheContestine
Автор

Thank you mam, it helped me. It easily reaches to everyone.

charancharucharancharu
Автор

Thank u so much mam
Amazing explanation

charchitmangal
Автор

Why haven't we used the keyword "virtual" before void disp() in the base class? 3:28

anweshapani
Автор

I love your way of simple explanation ma'am...

velmuruganr
Автор

If we use pointers only and call the function of derived class without using keyword virtual won't we get the functions of derived class?

sanjanaks
Автор

Mam could you please tell, why we have destructors only in virtual function?

msreedevisuriya
Автор

Mam if i need any type of help then where i access you....

swerarizwan
Автор

Hello mam, all the vidoes oosumm
But I didn't found the video of files and streams

dharmendrasheth
Автор

Mam thanks for such a wonderful explanation .Pl post videos on type conversion.🙏

sadhanachaudhary
Автор

hi mam.... in this program not running... what we have to do run the programme

rankacademy
Автор

Where are videos of files and streams ??

chinmaychaudhary