Explain Memory Allocation in C/C++ ?
No Answer is Posted For this Question
Be the First to Post Answer
What size is allocated to the union variable?
What is the role of C++ shorthand's?
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\"; } };
Explain the difference between new() and malloc() in c++?
Differentiate between the message and method?
Give example of a pure virtual function in c++?
What is the first name of c++?
What are the various storage classes in C++?
Mention the ways in which parameterized can be invoked.
diff between pointer and reference in c++?
What is an Iterator class?
What are the storage qualifiers?