What will happen if I allocate memory using "new" and free
it using "free" or allocate sing "calloc" and free it using
"delete"?
Answers were Sorted based on User's Feedback
Answer / sanjay makwana, puna
When you allocate a memory using new then constructor will
be called but when use a free that time destructor will not
be called.
Same vice versa for calloc and delete.
Is This Answer Correct ? | 6 Yes | 0 No |
Answer / ekta
free is not compatible with new.
free wont recognise the memory allocated by new and should
gie some error i guess.
Is This Answer Correct ? | 0 Yes | 1 No |
Answer / roshan p.r.
Hi,
you cannot free a memory allocated with new using "free"
and in the same way callac with "delete"
because they are incompatable
Is This Answer Correct ? | 0 Yes | 6 No |
What is abstraction in c++ with example?
How do you declare a set in c++?
If a header file is included twice by mistake in the program, will it give any error?
Why null pointer is used?
What are the unique features of C++.
What is endl c++?
what are the events occur in intr activated on interrupt vector table
sizeof- is it functioning statically or dynamically?
What is a .lib file in c++?
What is tellg () in c++?
What is an overflow error?
Can recursive program be written in C++?