#include <iostream>
using namespace std;
int main() {
int a = 3;
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][2];
}
What is pure oop?
Why is abstraction used?
which feature are not hold visual basic of oop?
what is single inheritance?
Why is destructor used?
What is friend function?
What is difference between multiple inheritance and multilevel inheritance?
What is the difference between the C & C++?
diff between Virtual mathod and abstract method?
what is abstract class ? when is used in real time ? give a exp
Write A Program to find the ambiguities in Multiple Inheritance? How are they resolved.(Virtual Functions)
What are the 5 oop principles?