What is encapsulation in c++ with example?
No Answer is Posted For this Question
Be the First to Post Answer
What is pure virtual function?
What is runtime errors c++?
How does class accomplish data hiding in c++?
What is lambda in c++?
Can you overload the operator+ for short integers?
What is the advantage of c++ over c?
What is a pure virtual function? Why is it represented as = 0...how is the internal implementation for the same
What is the latest version on c++?
Explain the concept of copy constructor?
Can you please explain the difference between using macro and inline functions?
What is flush programming?
Consider the following code fragment: int main(void) { int m = 4; mystery ( m ); mystery ( m ); printf("%d", m); return 0; } What is the output on the monitor if mystery is defined as follows ? void mystery (int m) { m = m+3; }