#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]];
}
Answer Posted / bhavana
c[2][4]=8
| Is This Answer Correct ? | 12 Yes | 0 No |
Post New Answer View All Answers
How do you achieve polymorphism?
What is inheritance and how many types of inheritance?
Are polymorphisms mutations?
Can destructor be overloaded?
What does <> mean pseudocode?
what is different between oops and c++
What is meant by multiple inheritance?
Which is better struts or spring?
What is the types of inheritance?
How many human genes are polymorphic?
What is the real life example of polymorphism?
What is static in oop?
What is abstraction oop?
Can static class have constructor?
What is class and object with example?