What is enum c++?
No Answer is Posted For this Question
Be the First to Post Answer
why v use c++ even we have microprocessor
How static variables and local variablesare similar and dissimilar?
How const functions will be treated by compiler?
Why is c++ still popular?
What is a constructor and how is it called?
class Foo { public: Foo(int i) { } }; class Bar : virtual Foo { public: Bar() { } }; Bar b; Referring to the above code, when the object 'b' is defined, a compiler error will occur. What action fixes the compiler error? a) Adding a virtual destructor to the class Bar b) Adding a constructor to Bar which takes an int parameter c) Adding "Foo()" to the Bar constructor d) Adding a copy constructor to the class Foo e) Adding "Foo(0)" to the Bar::Bar initializer list
Does c++ vector allocate memory?
Is eclipse good for c++?
What is virtual base class?
Is turbo c++ free?
What are the different types of comments allowed in c++?
Is it possible to get the source code back from binary file?