Explain "const" reference arguments in function?
No Answer is Posted For this Question
Be the First to Post Answer
What is an incomplete type?
Difference between a homogeneous and a heterogeneous container
what are function pointers?
Why do we need pointers?
Explain polymorphism?
What does 7/9*9 equal ? a) 1 b) 0.08642 c) 0
What are c++ tokens?
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
What is the use of dot in c++?
What are vectors used for in c++?
Is linux written in c or c++?
What is a "RTTI"?