Are iterators pointers?
No Answer is Posted For this Question
Be the First to Post Answer
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 basic concept of c++(object oriented programing)
When do you call copy constructors?
Suppose that data is an array of 1000 integers. Write a single function call that will sort the 100 elements data [222] through data [321].
Explain the isa and hasa class relationships.
How can you create a virtual copy constructor?
Is there structure in c++?
Are there any special rules about inlining?
What is the difference between static global and global ?
Explain what you mean by a pointer.
What is volatile and pragma? When they are used?
What is java and c++?