What is a class in oop?
No Answer is Posted For this Question
Be the First to Post Answer
What is difference between oop and pop?
Write a macro for swapping integers
What is abstraction encapsulation?
There are 2 classes defined as below public class A { class B b; } public class B { class A a; } compiler gives error. How to fix it?
define oops with class and object
write a program to find the largest of two numbers without using for,while,switch,if else, conditional operator and do while using c++ pgmng language
what is the difference between a package and a software?
How is class defined?
What is new keyword in oops?
WAP find square root of any number (without using sqrt() )?
#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]]; }
WHEN A COPY CONSTER IS CALL ?