#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 polymorphism in oops with example?
what is overloading
what is an instance of a class
What is extreme programming?
How do you make derived class as an abstract class?
How to reverse a sentence in c program ex: ram is a good boy answer: boy good a is ram
What is new keyword in oops?
class type to basic type conversion
what are abstract classes and how they impliment , with example
what are the ways in which a constructors can be called?
What is purpose of inheritance?
How would you stop a class from class from being derived or inherited.