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 issues if we mix new and free in C++?
What is bool in C++
Write a program to display the following output using a single cout statement Maths=90 Physics=77 Chemistry = 69
What is the difference between virtual functions and pure virtual functions?
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 static variable and difference between(const char *p,char const *p,const char* const p).
What is partial specialization or template specialization?
How to generate random numbers in C++ with a range?
Explain why C++ is not purely Object Oriented Language
Declare a pointer to a function that takes a char pointer as argument and returns a void pointer.
What is name mangling/name decoration?
What is the meaning of the following declaration: int *const *const *i?