What is encapsulation example?
No Answer is Posted For this Question
Be the First to Post Answer
#include <iostream> using namespace std; struct wow { int x; }; int main() { wow a; wow *b; a.x = 22; b = &a; a.x = 23; cout << b->x; return 0; }
what is the difference between containership and inheritence?
What are the different forms of polymorphism??
How is data security provided in Object Oriented languages? ?
What do we mean by a hidden argument in a function?
how to swap the variables without using temp and operators
what is pointers
What is encapsulation with real life example?
What is property in oops?
What is a class in oop?
What is OOPS and How it is different from Procedural Programming ?
23 Answers HP, Infosys, Thyrocare,
What is virtual Function.