Why do we use class in oops?
No Answer is Posted For this Question
Be the First to Post Answer
Why is polymorphism important in oop?
string is a class or data type in java?
How do you make derived class as an abstract class?
What do you mean by inheritance?
what is the difference between containership and inheritence?
what are abstract classes and how they impliment , with example
what is multi level inheritance give n example ?
13 Answers HDFC, Hulas Steel, Ness Technologies,
What is the fundamental idea of oop?
what is the new version of c++
1 Answers Ignou, Pramata, Satyam,
why to use template classes in c++?
c++ is a pure object oriented programming or not?
#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]]; }