Define private, protected and public access control.
No Answer is Posted For this Question
Be the First to Post Answer
What type of question are asked in GE code writing test based on c++ data structures and pointers?
Differentiate between declaration and definition in C++?
What is compilation?
How are the features of c++ different from c?
What is Name Decoration?
How does a copy constructor differs from an overloaded assignment operator?
What does 7/9*9 equal ? a) 1 b) 0.08642 c) 0
Can we declare destructor as static? Explain?
What is buffering in c++?
What is the extension of c++?
Given the following function definition: int doit(int &x, int y, int &z) { x = 3*x; y = y + 5; z = x+y; return z - 4; } int a = 5, b = 7, c = 9, d = 11; d = doit(a,b,c);
How do I use turbo c++?