Where You Can Use Interface in your Project
No Answer is Posted For this Question
Be the First to Post Answer
#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 difference between new and malloc?
What is Dynamic Polymorphism?
What is difference between inheritance and polymorphism?
what is the application of oops?
What is protected in oop?
what is a virtual class?
5 Answers Cap Gemini, IBM, Infosys, Trinity Technologies,
What is oops with example?
What are generic functions and generic classes?
When is it necessary to use member-wise initialization list in C++?
Why static functions always uses static variables?
what is static?