What is the important feature of inheritance?
No Answer is Posted For this Question
Be the First to Post Answer
What is a mixin class?
#include <iostream> using namespace std; int main() { int a = 2; int c[5][5]; for (int x=0;x<5;x++) { for (int y=0;y<5;y++) { c[x][y] = x*y; } } cout << c[a][c[1][4]]; }
What is an example of genetic polymorphism?
Prepare me a program for the animation of train
Can we have a private virtual method ?
How to calculate the age from the date of birth by using the program?
What is object and example?
What is the difference between class and structure?
String = "C++ is an object oriented programming language.An imp feature of oops is classes and objects".Write a pgm to count the repeated words from this scenario?
what is the technical or oop name of object?
How to call a non virtual function in the derived class by using base class pointer
What are the access specifiers avaible in c++?