What is the type of 'this' pointer?
No Answer is Posted For this Question
Be the First to Post Answer
How many static variables are created if you put one static member into a template class definition?
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 insertion sorting?
What is a tree in c++?
What is c strings syntax?
what is the size of a class which contains no member variables but has two objects??? is it 1 or 2??
What is isdigit c++?
write a programme to get a character and thier ASCII value
what is pre-processor in C++?
What is the maximum combined length of command line arguments including the space between adjacent arguments?
Is structure can be inherited?
What is virtual base class?