What is the difference between a mixin and inheritance?
No Answer is Posted For this Question
Be the First to Post Answer
Can java compiler skips any statement during compilation time?
How is class defined?
What is the full form of oops?
what is SPL in c++.
Is data hiding and abstraction same?
what is virtual destructor
What is the difference between a mixin and inheritance?
How compiler selects(internally) required overridden function in inheritance?
2 Answers CSC, Infinite Computer Solutions,
#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]]; }
Does c++ support multilevel and multiple inheritance?
What are constructors in oop?
What is polymorphism oop?