Explain the concept of memory leak?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C++ General Interview Questions

Define a pointer to a data member of the type pointer to pointer?

0 Answers  


What do you mean by inheritance in c++? Explain its types.

0 Answers  


When the design recommends static functions?

2 Answers   Symphony,


What sorting algorithm does c++ use?

0 Answers  


Can we specify variable field width in a scanf() format string? If possible how?

0 Answers  






What are static type checking?

0 Answers  


Why cout is used in c++?

0 Answers  


What is the difference between structures and unions?

0 Answers  


What is the history of c++?

0 Answers  


What is bubble sort c++?

0 Answers  


Explain what are single and multiple inheritances in c++?

0 Answers  


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\"; } };

2 Answers  


Categories