What is the array and initializing arrays in c++?
No Answer is Posted For this Question
Be the First to Post Answer
When one must use recursion function? Mention what happens when recursion functions are declared inline?
Can you please explain the difference between static and dynamic binding of functions?
List the advantages of inheritance.
What is the difference between set and map in c++?
How can you quickly find the number of elements stored in a a) static array b) dynamic array ?
why can't we declare data member of class auto register or extern
What are the sizes and ranges of the basic c++ data types?
What is object oriented programming (oop)?
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
How does the copy constructor differ from the assignment operator (=)?
Explain selection sorting?
What is setiosflags c++?