Who invented turbo c++?
No Answer is Posted For this Question
Be the First to Post Answer
Explain what data encapsulation is in c++?
What is a rooted hierarchy?
What is constructor in C++?
Snake Game: This is normal snake game which you can find in most of the mobiles. You can develop it in Java, C/C++, C# or what ever language you know.
If there are two catch statements, one for base and one for derived, which should come first?
Can constructor be private in c++?
What is the basic structure of c++ program?
What are vectors used for in c++?
How to demonstrate the use of a variable?
How do you define/declare constants in c++?
class Foo { const int x; protected: Foo(int f); ~Foo(); }; Foo f; Referring to the sample code above, why will the class declaration not compile? a) The variable x is const. b) The destructor is protected. c) The destructor is not public. d) The constructor is protected. e) There is no default constructor.
What is protected inheritance?