What are classes oop?
No Answer is Posted For this Question
Be the First to Post Answer
What is polymorphism what are the different types of polymorphism?
what is mean by design pattern
what is a ststic variable and stiticfunction briefly explain with exmple and in which case we use
What is a scope operator and tell me its functionality?
Write a program to get the binary tree.
What makes a language oop?
what is the difference between class and structure in C++?
What is ambiguity in c++
What is the difference between an object and a class?
20% of a 6 litre solution and 60% of 4 litre solution are mixed what the % of mixture of solution it is resulted into?
What are properties in oop?
#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]; }