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

How can you quickly find the number of elements stored in a static array? Why is it difficult to store linked list in an array?

0 Answers  


Given the following seqment of code containing a group of nested if instructions: y = 9; if ((x==3) || (x == 5)) y++; else if (x == 2) y *= 2; else if (x == 4 ) y-= 7; else y = 8; Enter a segment of code (without any IF statements) that does exectly the same thing using the switch structure.

1 Answers  


What are register variables?

0 Answers  


When is dynamic checking necessary?

0 Answers  


What are static type checking?

0 Answers  






Do class declarations end with a semicolon?

0 Answers  


What is capacity in vector in c++?

0 Answers  


Describe private, protected and public?

0 Answers  


Should the this pointer can be used in the constructor?

0 Answers  


What are the two shift operators and what are their functions?

0 Answers  


What are the advantages of using a pointer? Define the operators that can be used with a pointer.

0 Answers  


When does a 'this' pointer get created?

0 Answers  


Categories