What is abstraction encapsulation?
No Answer is Posted For this Question
Be the First to Post Answer
how to find the largest of given numbers in an array
Write a macro for swapping integers
Why is oop better than procedural?
Difference between vector and array
write a c++ code to overload + and - for a stack class such that + provides push and - provides pop operation
1 Answers College School Exams Tests, HCL, IBM, TCS,
#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]; }
Difference between new operator and operator new
What is a function in oop?
Which language is not a true object oriented programming language?
Explain the concept of abstracion and encapsulation with one example. What is the difference between them?
what is overloading
What is encapsulation in simple terms?