Can we create object of interface?
No Answer is Posted For this Question
Be the First to Post Answer
What is the real time example of inheritance?
what is object oriented programming and procedure oriented programming?
what are the disadvantages of C++?
25 Answers ATS, Infosys, UNI, Wipro,
What is the diamond problem in inheritance?
some one give d clear explanation for polymorphism
how to find the largest of given numbers in an array
What is stream in oop?
What are the 5 oop principles?
what is a ststic variable and stiticfunction briefly explain with exmple and in which case we use
What type of Job you are providing?
What causes polymorphism?
#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]]; }