Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


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

Who discovered c++?

0 Answers  


What are the sizes and ranges of the basic c++ data types?

0 Answers  


How many keywords are used in c++?

0 Answers  


True or false, if you keep incrementing a variable, it will become negative a) True b) False c) It depends

0 Answers  


Given the following seqment of code containing a group of nested if instructions: y = 9; if ((x==3) || (x == 5)) y++; else if (x == 2) y *= 2; else if (x == 4 ) y-= 7; else y = 8; Enter a segment of code (without any IF statements) that does exectly the same thing using the switch structure.

1 Answers  


when can we use virtual destructor?

7 Answers   HCL, HP, Virage Logic,


Does c++ have a hash table?

0 Answers  


Explain RAII (Resource Acquisition Is Initialization).

3 Answers  


What is the difference between #define debug 0 and #undef debug?

0 Answers  


What is RAII (Resource Acquisition Is Initialization)?

1 Answers  


Explain working of printf?

8 Answers  


What is problem with Runtime type identification?

2 Answers  


Categories