What is pointer to member?
No Answer is Posted For this Question
Be the First to Post Answer
What is lambda in c++?
Show the application of a dynamic array with the help of an example.
Define private, protected and public access control.
Write a c program for binary addition of two 8 bit numbers.
How the programmer of a class should decide whether to declare member function or a friend function?
Name some pure object oriented languages?
What is the output of this prog. ? struct A { A(){ cout << \"A\"; } }; struct B { B(){ cout << \"B\"; } }; struct C { C(){ cout << \"C\"; } }; struct D { D(){ cout << \"D\"; } }; struct E : D { E(){ cout << \"E\"; } }; struct F : A, B { C c; D d; E e; F() : B(), A(),d(),c(),e() { cout << \"F\"; } };
What is the difference between const and constexpr?
What is double in c++?
What are virtual functions and what is its use?
How to write a program such that it will delete itself after exectution?
What are register variables?