What is the difference between structures and unions?
No Answer is Posted For this Question
Be the First to Post Answer
what are prototypes
What is the type of 'this' pointer? When does it get created?
What is meant by a delegate?
Difference between pointer to constant and constant pointer to a constant. Give example.
What is the difference between operator new and the new operator?
What is the role of static keyword for a class member variable?
What is stl containers in c++?
What are the important differences between c++ and java?
How to demonstrate the use of a variable?
Is it possible for a member function to use delete this?
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 use of main function in c++?