What is the main feature of oop?
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 multiple inheritance? Give Example
What is encapsulation in ict?
What is nutshell in programming language?
1 Answers Satyam, Tech Mahindra,
difference between static and non-static variables?
why the argument is passed by reference to a copy constructor?example?
If a=5, b=6, c=7, b+=a%c*2. What is the final value of b?
What do you mean by public, private, protected and friendly?
What is this pointer in oop?
Why is abstraction needed?
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 pass by value,pass by pointer,pass by reference in the catch block in the exception handling in c++