What is multiple inheritance ?

Answer Posted / varsha vilas kalebag

multiple inheriance is that base class can excess members
frm derived class

Is This Answer Correct ?    2 Yes 14 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Will I be able to get a picture in D drive to the c++ program? If so, help me out?

1659


How does polymorphism work?

635


Can you name some types of inheritance?

641


What is abstraction encapsulation?

661


Why it is called runtime polymorphism?

577






What exactly is polymorphism?

612


What does enum stand for?

617


There are two base class B1,B2 and there is one class D which is derived from both classes, Explain the flow of calling constructors and destructors when an object of derived class is instantiated.

1460


Is react oop?

612


to find out the minimum of two integer number of two different classes using friend function

1645


class type to basic type conversion

1841


What is object and class in oops?

590


why reinterpret cast is considered dangerous?

1905


What is oops in programming?

570


#include #include #include #include void insert(char *items, int count); int main(void) { char s[255]; printf("Enter a string:"); gets(s); insert(s, strlen(s)); printf("The sorted string is: %s.\n", s); getch(); return 0; } void insert(char *items, int count) { register int a, b; char t; for(a=1; a < count; ++a) { t = items[a]; for(b=a-1; (b >= 0) && (t < items[b]); b--) items[b+1] = items[b]; items[b+1] = t; } } design an algorithm for Insertion Sort

2170