CoolInterview.com - World's Largest Collection of Interview Questions GET FREE MAGAZINE FROM SAP NOW!
Home| Ask Questions| About Us| Feedback| Contact Us|
 Interview Questions  
 Our Services  

Get 9,000 Interview Questions & Answers in an eBook.


  • 9500+ Pages
  • 9000 Question & Answers
  • All Tech. Categories
  • 14 MB Content

    Get it now !!



    Send your Resume to 6000 Companies

  • COOLINTERVIEW.COM LANGUAGES C++ DETAILS



    Question :
    Difference between realloc() and free()?





    Answer :
    Realloc function takes 2 parameters.

    example:

    tpedef struct test

    {

    int i;

    float j;

    };

    test *ptest = (test*)malloc(sizeof(test));

    realloc(ptest,sizeof(test));

    After realloc ptest contains new address and memory allocated will double the size of prvious memory.


    realloc() is function allocated dynamically. we can modify the memory in terms of reducing or increasing memory for variables when it required then we can decrease or increase more than our prespecified memory, the free() function frees the previously allocate memory

     Posted by: nagaraju    

    Contact Author  Contact Author
    realloc()is used to allocate memory dynamicaaly
    where as free()is used to deallocate unused memory

     Posted by: sreelatha    

    Contact Author  Contact Author
    Realloc function re-allocates previously allocated memory as per our requirement. we have to pass the pointer as first parameter, the size of new memory. Realloc has take care about the allocation, the data in pointer should not be changed and the location is changed depending on the memory size. It is pure 'C' native function.

    free() function used to deallocate memory which allocated with malloc or calloc functions.

     Posted by: Ravi Shanklar    

    Contact Author  Contact Author
    The realloc() function changes the size of the block pointed to by ptr to size bytes and returns a pointer to the (possibly moved) block. The contents will be unchanged up to the lesser of the new and old sizes. If the new size of the block requires movement of the block, the space for the previous instantiation of the block is freed. If the new size is larger, the contents of the newly allocated portion of the block are unspecified. If ptr is NULL, realloc() behaves like malloc() for the specified size. If size is 0 and ptr is not a null pointer, the space pointed to is freed.


     Posted by: riya    

    Contact Author  Contact Author

    © CoolInterview.com
    Today's Special: Get Free Magazine from SAP now!

    A D V E R T I S E M E N T






    If you have the better answer, then send it to us. We will display your answer after the approval.
    Name :*
    Email Id :*
    Answer :*
    Verification Code Code Image - Please contact webmaster if you have problems seeing this image code Not readable? Load New Code
    Process Verification  Enter the above shown code:*
    Inform me about updated answers to this question

       


    Rate the above answer. Help us to know about the answer.
    Category C++ Interview Questions
    Rating (5.0) By 1 users
    Added 7/19/2006
    Views 2645
    Rate it!
    Free Offers 300 Free Magazines for you. No credit card required. No Shipping Charges. Absolutely Free for 1 Year.

    Please Note: We keep on updating better answers to this site. Subscribe to our newsletter to get notified when better answer is posted.

    Notify me when better answer is posted!
    Email:



    View ALL C++ Interview Questions


    Sponsored Links  

    Google Search

    Google

    CoolInterview.com is a part of Vyom Network.
    Copyright ©2003-2008 Vyom Technosoft Pvt. Ltd., All Rights Reserved. Privacy Policy
    Page URL: http://www.coolinterview.com/interview/6152/Default.asp?cachecommand=bypass


    Download Yahoo Messenger | Placement Papers| FREE SMS | ASP .Net Tutorial

    0.8