What is a .h file c++?
No Answer is Posted For this Question
Be the First to Post Answer
Can non-public members of another instance of the class be retrieved by the method of the same class?
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
Profiler in projects?
Which function should be used to free the memory allocated by calloc()?
Given an array of size N in which every number is between 1 and N, determine if there are any duplicates in it. You are allowed to destroy the array if you like. [ I ended up giving about 4 or 5 different solutions for this, each supposedly better than the others ].
Why do we need runtime polymorphism in c++?
What are static type checking?
What do you mean by translation unit?
what is polymorphism?
I need to find a specific string between two strings how do I do it?
What is vector processing?
What is this pointer in c++?