#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 is the sylabus for priliminaries?
What is abstract class in oop?
What is Difeerence between List obj=new ArrayList(); and ArrayList obj=new ArrayList()?
write a program to find 2^n+1 ?
Why is polymorphism needed?
Get me an image implementation program.
What is multilevel inheritance explain with example?
How do you achieve runtime polymorphism?
They started with the brief introduction followed by few basic C++ questions on polumorphism, inheritance and then virtual functions. What is polymorphims? How you will access polymorphic functions in C? How virtual function mechanism works?
Why is encapsulation used?
What is pointer in oop?
Explain the concepts involved in Object Oriented programming.
Can enum be null?
What is the renewal class?
How to use CMutex, CSemaphore in VC++ MFC