How does free know the size of memory to be deleted
No Answer is Posted For this Question
Be the First to Post Answer
What are string library functions(syntax).
What is a memory leak in C++?
Write a syntax and purpose of switch statement.
Identify the errors in the following program. #include <iostream> using namespace std; void main() { int i=5; while(i) { switch(i) { default: case 4: case 5: break; case 1: continue; case 2: case 3: break; } i-; } }
What is function overloading and operator overloading in C++?
Implement a 2D bit-matrix representing monochrome pixels which will have only OFF/ON values and will take on an average only one bit of memory for each stored bit. How to perform various operations on it?
It is possible to build a C++ compiler on top of a C compiler. How would you do this?
When would you use a pointer? A reference?
What is constant keyword in C++? Illustrate its various uses.
0 Answers Akamai Technologies, Infogain,
What is the difference between Stack and Queue in C++?
0 Answers Global Logic, iNautix,
what is the difference between a pointer and a reference?
0 Answers Amazon, Blue Star, C DAC,
What is the purpose of a constructor? Destructor?