Why is null pointer used?
No Answer is Posted For this Question
Be the First to Post Answer
If you don’t declare a return value, what type of return value is assumed?
What is microsoft c++ redistributable 2013?
Can I run c program in turbo c++?
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 do you mean by function overriding & function overloading in c++?
Are strings immutable in c++?
Explain object slicing in c++?
Define a nested class.
What is the type of 'this' pointer?
write the programme that convert a interger to biniry number
What is difference between class and structure in c++?
Define a conversion constructor?