What is the importance of oop?
No Answer is Posted For this Question
Be the First to Post Answer
Program to check whether a word is in all capital letters
Which is the parameter that is added to every non-static member function when it is called?
What is namespace?
What's the full form of STL?
What is a class?
32 Answers Infosys, TCS, Thylak,
Whats is abstraction in oops?
What is destructor give example?
What is the default size allocated for array in the statement if size not specified " int a[] "
State what is encapsulation and friend function?
what is the main difference between sizeof() operator in c and c++
#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]]; }
How do you define a class in oop?