Why is that unsafe to deal locate the memory using free( ) if it has been allocated using new?
No Answer is Posted For this Question
Be the First to Post Answer
What is the full form of dos?
Can notepad ++ run c++?
What is the copy-and-swap idiom?
Which recursive sorting technique always makes recursive calls to sort subarrays that are about half size of the original array?
which of the following is not an secondary constant a) array b) real c) union
Are vectors faster than arrays?
How many ways are there to initialize an int with a constant?
What is virtual destructors? Why they are used?
How does work in c++?
What is public, protected, private in c++?
What is an operator in c++?
C++ program output? Explain output of this program. #include <iostream> using std::cout; using std::cin; int main() { cout<<cout<<' '; cout<<cin; return 0; } It prints some address in hexadecimal. what is it?