Differences between private, protected and public and give examples.
No Answer is Posted For this Question
Be the First to Post Answer
5. Can inline functions have a recursion?
what is data Abstraction
What is the difference between public, private, and protected access?
How would you use qsort() function to sort an array of structures?
which is best institue to learn C/C++ IN AMEERPET OR MAITHRIVANAM OR SR NAGAR, PLEASE HELP. THANKS IN ADVANCE
What is implicit pointer in c++?
What is protected inheritance?
In C++ cout is: a) object b) class c) something else
11 Answers Infosys, Lehman Brothers,
How is objective c different from c++?
How does work in c++?
What are stacks? Give an example where they are useful.
What is the output of this prog. ? struct A { A(){ cout << \"A\"; } }; struct B { B(){ cout << \"B\"; } }; struct C { C(){ cout << \"C\"; } }; struct D { D(){ cout << \"D\"; } }; struct E : D { E(){ cout << \"E\"; } }; struct F : A, B { C c; D d; E e; F() : B(), A(),d(),c(),e() { cout << \"F\"; } };