#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
What are different types of JVM's? for example we use dalvik jvm for android then what about the remaining operating systems?
Plese get me a perfect C++ program for railway/airway reservation with all details.
Why is polymorphism used?
What is new keyword in oops?
What is multilevel inheritance in oop?
What is the renewal class?
I have One image (means a group photo ) how to split the faces only from the image?............ please send the answer nagadurgaraju@gmail.com thanks in advace...
write knight tour problem which is present in datastructure
What is overriding in oops?
Where is pseudocode used?
What do you mean by abstraction?
Can we create object of interface?
Why is polymorphism needed?
Why multiple inheritance is not possible?
What is protected in oop?