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



What will happen if I allocate memory using "new" and free it using "free" or a..

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

What will happen if I allocate memory using "new" and free it using "free" or a..

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

What will happen if I allocate memory using "new" and free it using "free" or a..

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

Post New Answer

More C++ General Interview Questions

What is abstraction in c++ with example?

0 Answers  


How do you declare a set in c++?

0 Answers  


If a header file is included twice by mistake in the program, will it give any error?

0 Answers  


Why null pointer is used?

0 Answers  


What are the unique features of C++.

0 Answers  






What is endl c++?

0 Answers  


what are the events occur in intr activated on interrupt vector table

0 Answers   HGS,


sizeof- is it functioning statically or dynamically?

2 Answers  


What is a .lib file in c++?

0 Answers  


What is tellg () in c++?

0 Answers  


What is an overflow error?

0 Answers  


Can recursive program be written in C++?

0 Answers  


Categories