What is sub classing in c++?

Answer Posted / ashok kumar

which class inherited from base class is called sub class

Is This Answer Correct ?    3 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is property in oops?

816


How do you answer polymorphism?

823


Can destructor be overloaded?

823


How do you define a class in oop?

887


c++ program to swap the objects of two different classes

2156


What is cohesion in oop?

866


What is purpose of inheritance?

885


What is a class oop?

782


What is object-oriented programming? Webopedia definition

977


what are the realtime excercises in C++?

2578


What is destructor in oop?

818


What is meant by oops concept?

817


#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

2399


can we make game by using c

3764


Explain the concepts involved in Object Oriented programming.

906