What is multilevel inheritance in oop?
No Answer is Posted For this Question
Be the First to Post Answer
write a c++ code of diagonal matrix.
What is destructor give example?
What is the main purpose of inheritance law?
What is the Advantage of Interface over the Inheritance in OOPS?
i am getting an of the type can not convert int to int *. to overcome this problem what we should do?
What is multiple inheritance? Give Example
class type to basic type conversion
#include <string.h> #include <stdio.h> #include <stdlib.h> #include<conio.h> 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
How do you explain polymorphism?
Why do we need polymorphism in c#?
What is encapsulation in oop?
What is multiple inheritance?